Refactor travis testing
This commit is contained in:
20
test.sh
20
test.sh
@@ -3,16 +3,18 @@
|
||||
KISS_TARGET=${KISS_TARGET:-$1}
|
||||
KISS_TARGET=${KISS_TARGET:-interp}
|
||||
|
||||
if [ "$KISS_TARGET" = "projects" ]
|
||||
# If Travis is running tests, basic dependencies need to be installed
|
||||
if [ ! -z "$TRAVIS_OS_NAME" ]
|
||||
then
|
||||
KISS_HEADLESS="$TRAVIS_OS_NAME" ./test-projects.sh
|
||||
else
|
||||
# For CI tests, force install the dependencies
|
||||
if [ ! -z "$TRAVIS_OS_NAME" ]
|
||||
then
|
||||
(cd kiss/build-scripts && haxelib install all --always)
|
||||
(cd kiss/build-scripts/$KISS_TARGET && haxelib install all --always)
|
||||
fi
|
||||
(cd kiss/build-scripts && haxelib install all --always)
|
||||
(cd kiss/build-scripts/$KISS_TARGET && haxelib install all --always)
|
||||
fi
|
||||
|
||||
# Test projects with test-project.sh
|
||||
if [ ! -z "$KISS_PROJECT" ]
|
||||
then
|
||||
./test-project.sh
|
||||
# Test Kiss with utest cases in kiss/src/test/cases
|
||||
else
|
||||
haxe kiss/build-scripts/common-args.hxml kiss/build-scripts/common-test-args.hxml kiss/build-scripts/$KISS_TARGET/test.hxml
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user