13 lines
418 B
Bash
Executable File
13 lines
418 B
Bash
Executable File
#! /bin/bash
|
|
|
|
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 --always)
|
|
(cd src/build-scripts/$HISS_TARGET && haxelib install all --always)
|
|
fi
|
|
|
|
haxe src/build-scripts/common-args.hxml src/build-scripts/common-test-args.hxml src/build-scripts/$HISS_TARGET/test.hxml |