Skip to content

Commit f10d577

Browse files
committed
chore: add jdk 24 and 25 in ci for gradle to use 24
1 parent 4078920 commit f10d577

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

.github/workflows/build-core.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,12 @@ jobs:
1717
- uses: actions/checkout@v4
1818
with:
1919
submodules: recursive
20-
- name: Set up JDK 25 (for JNI)
20+
- name: Set up JDK 24 (for Gradle)
21+
uses: actions/setup-java@v4
22+
with:
23+
java-version: '24'
24+
distribution: 'graalvm'
25+
- name: Set up JDK 25
2126
uses: actions/setup-java@v4
2227
with:
2328
java-version: '25'

.github/workflows/build-natives.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,12 @@ jobs:
2626
- uses: actions/checkout@v4
2727
with:
2828
submodules: recursive
29-
- name: Set up JDK 25 (for JNI)
29+
- name: Set up JDK 24 (for Gradle)
30+
uses: actions/setup-java@v4
31+
with:
32+
java-version: '24'
33+
distribution: 'graalvm'
34+
- name: Set up JDK 25
3035
uses: actions/setup-java@v4
3136
with:
3237
java-version: '25'

0 commit comments

Comments
 (0)