test scripts use lix for dependencies

This commit is contained in:
2023-04-27 12:22:52 -06:00
parent 18bbd07c12
commit d432ef1993
3 changed files with 8 additions and 56 deletions

View File

@@ -1,40 +1,9 @@
#! /bin/bash
KISS_PROJECT=${KISS_PROJECT:-$1}
KISS_PROJECT=${KISS_PROJECT:-aoc}
KISS_PROJECT=${KISS_PROJECT:-bad-nlp}
./test-env.sh
(cd projects/$KISS_PROJECT && haxelib install all --always --quiet)
# If project folder contains "flixel-", test that its code compiles for HTML5 and C++
if [[ $KISS_PROJECT == *flixel-* ]]
then
# If running through Travis, install HaxeFlixel with c++ tooling
if [ ! -z "CI_OS_NAME" ]
then
haxelib install lime --quiet
haxelib install openfl --quiet
haxelib install flixel --quiet
haxelib install flixel-addons --quiet
haxelib install flixel-ui --quiet
haxelib install hxcpp --quiet
haxelib install svg --quiet
fi
# if "desktop-" is in the project name, only test for C++
if [[ $KISS_PROJECT == *desktop-* ]]
then
(cd projects/$KISS_PROJECT && echo "Building $KISS_PROJECT for cpp" && haxelib run lime build cpp)
# if "web-" is in the project name, only test for HTML5
elif [[ $KISS_PROJECT == *web-* ]]
then
(cd projects/$KISS_PROJECT && echo "Building $KISS_PROJECT for html5" && haxelib run lime build html5)
# Otherwise require both to succeed
else
(cd projects/$KISS_PROJECT && echo "Building $KISS_PROJECT for html5" && haxelib run lime build html5) && \
(cd projects/$KISS_PROJECT && echo "Building $KISS_PROJECT for cpp" && haxelib run lime build cpp)
fi
# Test other projects with their test.sh file
else
(cd projects/$KISS_PROJECT && ./test.sh "${@:2}")
fi
if [ -n "$CI_OS_NAME" ]; then
(cd projects/$KISS_PROJECT && lix download)
fi
(cd projects/$KISS_PROJECT && ./test.sh "${@:2}")