File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -42,37 +42,40 @@ jobs:
4242 timeout-minutes : 10
4343 shell : bash
4444 run : |
45- export PATH=${GITHUB_WORKSPACE}/build/libs:${PATH}
46-
4745 echo "OsType: $OSTYPE"
48- echo "kscript path: $(which kscript)"
46+ export PATH=./build/libs:${PATH}
4947
5048 if [[ "$OSTYPE" == "linux-gnu"* ]]; then
5149 echo "Linux test..."
5250 ./test/test_suite.sh
5351 elif [[ "$OSTYPE" == "darwin"* ]]; then
5452 echo "MacOs test..."
5553 ./gradlew clean build
54+ echo "kscript path: $(which kscript)"
5655 kscript --help
5756 kscript -d "println(1+1)"
5857 elif [[ "$OSTYPE" == "cygwin" ]]; then
5958 echo "Cygwin test..."
6059 ./gradlew clean build
60+ echo "kscript path: $(which kscript)"
6161 kscript --help
6262 kscript -d "println(1+1)"
6363 elif [[ "$OSTYPE" == "msys" ]]; then
6464 echo "MSys test..."
6565 ./gradlew clean build
66+ echo "kscript path: $(which kscript)"
6667 kscript --help
6768 kscript -d "println(1+1)"
6869 elif [[ "$OSTYPE" == "win32" ]]; then
6970 echo "Windows test..."
7071 ./gradlew clean build
72+ echo "kscript path: $(which kscript)"
7173 kscript --help
7274 kscript -d "println(1+1)"
7375 elif [[ "$OSTYPE" == "freebsd"* ]]; then
7476 echo "FreeBsd test..."
7577 ./gradlew clean build
78+ echo "kscript path: $(which kscript)"
7679 kscript --help
7780 kscript -d "println(1+1)"
7881 else
You can’t perform that action at this time.
0 commit comments