File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -44,25 +44,34 @@ jobs:
4444 run : |
4545 export PATH=${GITHUB_WORKSPACE}/build/libs:${PATH}
4646
47+ echo "OsType: $OSTYPE"
48+ echo "kscript path: $(which kscript)"
49+
4750 if [[ "$OSTYPE" == "linux-gnu"* ]]; then
51+ echo "Linux test..."
4852 ./test/test_suite.sh
4953 elif [[ "$OSTYPE" == "darwin"* ]]; then
54+ echo "MacOs test..."
5055 ./gradlew clean build
5156 kscript --help
5257 kscript -d "println(1+1)"
5358 elif [[ "$OSTYPE" == "cygwin" ]]; then
59+ echo "Cygwin test..."
5460 ./gradlew clean build
5561 kscript --help
5662 kscript -d "println(1+1)"
5763 elif [[ "$OSTYPE" == "msys" ]]; then
64+ echo "MSys test..."
5865 ./gradlew clean build
5966 kscript --help
6067 kscript -d "println(1+1)"
6168 elif [[ "$OSTYPE" == "win32" ]]; then
69+ echo "Windows test..."
6270 ./gradlew clean build
6371 kscript --help
6472 kscript -d "println(1+1)"
6573 elif [[ "$OSTYPE" == "freebsd"* ]]; then
74+ echo "FreeBsd test..."
6675 ./gradlew clean build
6776 kscript --help
6877 kscript -d "println(1+1)"
You can’t perform that action at this time.
0 commit comments