We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5948d0 commit 331986cCopy full SHA for 331986c
1 file changed
.kokoro/presubmit/showcase-native.sh
@@ -52,6 +52,18 @@ tar -xf showcase-*
52
popd
53
54
# Run showcase tests with `native` profile
55
+echo "Install GraalVM 25"
56
+echo "$JAVA_HOME"
57
+pwd
58
+mkdir -p ~/tools/jdk
59
+pushd ~/tools/jdk
60
+wget https://download.oracle.com/graalvm/25/latest/graalvm-jdk-25_linux-x64_bin.tar.gz
61
+tar -xf graalvm-jdk-25_linux-x64_bin.tar.gz
62
+export JAVA_HOME=~/tools/jdk/graalvm-jdk-25+37.1
63
+export PATH=$JAVA_HOME/bin:$PATH
64
+java -version
65
+echo "Running native image tests..."
66
+popd
67
pushd java-showcase
68
mvn test -Pnative,-showcase \
69
-Denforcer.skip=true \
0 commit comments