Fix test dependency installation

This commit is contained in:
2020-11-13 19:10:05 -07:00
parent 014893271e
commit 4d6a823066
9 changed files with 13 additions and 13 deletions

View File

@@ -3,10 +3,11 @@
HISS_TARGET=${HISS_TARGET:-$1}
HISS_TARGET=${HISS_TARGET:-interp}
# For CI tests, force install the dependencies
if [ ! -z "$TRAVIS_OS_NAME" ]
then
(cd src/build-scripts && haxelib install all)
(cd src/build-scripts/$HISS_TARGET && haxelib install all)
(cd src/build-scripts && haxelib install all --always)
(cd src/build-scripts/$HISS_TARGET && haxelib install all --always)
fi
haxe src/build-scripts/$HISS_TARGET/test.hxml
haxe src/build-scripts/common-args.hxml src/build-scripts/common-test-args.hxml src/build-scripts/$HISS_TARGET/test.hxml