Skip to content

Commit

Permalink
save disk space on gha
Browse files Browse the repository at this point in the history
  • Loading branch information
kali committed Oct 15, 2020
1 parent 4af45ec commit b107c9d
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .travis/native.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,18 @@ then
exit 0
fi

for version in 1_4_1 1_5_0 1_6_0 1_7_0
do
echo $version
cargo -q test -q -p onnx-test-suite --release -- $version
if [ -n "$CI" ]
then
rm -rf $CACHEDIR/onnx
fi
done

HARNESS=""
for p in $(ls harness)
for p in $(ls harness | grep -v onnx-test-suite)
do
HARNESS="$HARNESS -p $p"
done
Expand Down

0 comments on commit b107c9d

Please sign in to comment.