We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b7f07f commit 2f590a4Copy full SHA for 2f590a4
.kokoro/build.sh
@@ -72,8 +72,11 @@ integration)
72
;;
73
graalvm)
74
# Run Unit and Integration Tests with Native Image
75
- curl -s "https://get.sdkman.io" | bash
76
- sdk install java 25-graalce
+ set -ex
+ microdnf install zip
77
+ curl -s "https://get.sdkman.io" | bash -e
78
+ source "/root/.sdkman/bin/sdkman-init.sh"
79
+ sdk install java 25-graalce -Y
80
java -version
81
mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative -Penable-integration-tests test
82
RETURN_CODE=$?
0 commit comments