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 ae80b5d commit 2a58bd2Copy full SHA for 2a58bd2
.kokoro/build.sh
@@ -110,8 +110,11 @@ integration-cloud-staging)
110
;;
111
graalvm)
112
# Run Unit and Integration Tests with Native Image.
113
- curl -s "https://get.sdkman.io" | bash
114
- sdk install java 25-graalce
+ set -ex
+ microdnf install zip
115
+ curl -s "https://get.sdkman.io" | bash -e
116
+ source "/root/.sdkman/bin/sdkman-init.sh"
117
+ sdk install java 25-graalce -Y
118
java -version
119
mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative -Penable-integration-tests test "-Dtest=com.google.cloud.spanner.jdbc.it.**"
120
RETURN_CODE=$?
0 commit comments