Skip to content

Commit 1220cad

Browse files
committed
Fixed required Java version in native-image-build-static-images.yml
1 parent b3094fb commit 1220cad

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/native-image-build-static-images.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
timeout-minutes: 15
2121
strategy:
2222
matrix:
23-
java-version: ['21', '24-ea']
23+
java-version: ['23', '24-ea']
2424
steps:
2525
- uses: actions/checkout@v4
2626
- uses: graalvm/setup-graalvm@v1

native-image/build-static-images/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -ex
44
javac EnvMap.java
55
# Run fully static image build
66
native-image --static --libc=musl EnvMap
7-
ldd EnvMap
7+
ldd envmap
88
# Run mostly-static image build
99
javac EnvMap.java
1010
native-image --static-nolibc EnvMap

0 commit comments

Comments
 (0)