Skip to content

Commit

Permalink
Fixed required Java version in native-image-build-static-images.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
olyagpl committed Nov 27, 2024
1 parent b3094fb commit 1220cad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/native-image-build-static-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
timeout-minutes: 15
strategy:
matrix:
java-version: ['21', '24-ea']
java-version: ['23', '24-ea']
steps:
- uses: actions/checkout@v4
- uses: graalvm/setup-graalvm@v1
Expand Down
2 changes: 1 addition & 1 deletion native-image/build-static-images/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -ex
javac EnvMap.java
# Run fully static image build
native-image --static --libc=musl EnvMap
ldd EnvMap
ldd envmap
# Run mostly-static image build
javac EnvMap.java
native-image --static-nolibc EnvMap

0 comments on commit 1220cad

Please sign in to comment.