Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .kokoro/presubmit/showcase-native.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,18 @@ tar -xf showcase-*
popd

# Run showcase tests with `native` profile
echo "Install GraalVM 25"
echo "$JAVA_HOME"
pwd
mkdir -p ~/tools/jdk
pushd ~/tools/jdk
wget https://download.oracle.com/graalvm/25/latest/graalvm-jdk-25_linux-x64_bin.tar.gz
tar -xf graalvm-jdk-25_linux-x64_bin.tar.gz
export JAVA_HOME=~/tools/jdk/graalvm-jdk-25+37.1
export PATH=$JAVA_HOME/bin:$PATH
java -version
echo "Running native image tests..."
popd
pushd java-showcase
mvn test -Pnative,-showcase \
-Denforcer.skip=true \
Expand Down