Fix travis CI again

This commit is contained in:
2021-06-07 13:17:46 -06:00
parent 9f6c76562c
commit 33613baf8f
21 changed files with 20 additions and 19 deletions

View File

@@ -5,8 +5,20 @@ KISS_PROJECT=${KISS_PROJECT:-aoc}
haxelib dev kiss kiss
# If project starts with flixel-, test that its code compiles for HTML5 and C++
if [[ $KISS_PROJECT == flixel-* ]]
# If project folder contains "nat-", set development directory for nat-archive-tool
if [[ $KISS_PROJECT == *nat-* ]]
then
haxelib dev nat-archive-tool projects/nat-archive-tool
fi
# If project folder contains "ascii-", set development directory for asciilib2
if [[ $KISS_PROJECT == *ascii-* ]]
then
haxelib dev asciilib projects/asciilib2
fi
# 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 and
if [ ! -z "$TRAVIS_OS_NAME" ]