File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -42,23 +42,28 @@ jobs:
4242 timeout-minutes : 10
4343 shell : bash
4444 run : |
45- export KSCRIPT_HOME="$ GITHUB_WORKSPACE"
45+ export PATH=${ GITHUB_WORKSPACE}/build/libs:${PATH}
4646
4747 if [[ "$OSTYPE" == "linux-gnu"* ]]; then
4848 ./test/test_suite.sh
4949 elif [[ "$OSTYPE" == "darwin"* ]]; then
50+ ./gradlew clean build
5051 kscript --help
5152 kscript "println(1+1)"
5253 elif [[ "$OSTYPE" == "cygwin" ]]; then
54+ ./gradlew clean build
5355 kscript --help
5456 kscript "println(1+1)"
5557 elif [[ "$OSTYPE" == "msys" ]]; then
58+ ./gradlew clean build
5659 kscript --help
5760 kscript "println(1+1)"
5861 elif [[ "$OSTYPE" == "win32" ]]; then
62+ ./gradlew clean build
5963 kscript --help
6064 kscript "println(1+1)"
6165 elif [[ "$OSTYPE" == "freebsd"* ]]; then
66+ ./gradlew clean build
6267 kscript --help
6368 kscript "println(1+1)"
6469 else
You can’t perform that action at this time.
0 commit comments