File tree Expand file tree Collapse file tree 1 file changed +13
-2
lines changed
Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -14,15 +14,26 @@ jobs:
1414 name : OS=${{ matrix.os }}, Java=${{ matrix.java }}, Gradle=${{ matrix.gradle }}
1515 strategy :
1616 matrix :
17- os : [ ubuntu-latest, windows-latest ]
17+ os : [ ubuntu-24.04-arm ]
1818 # Always test on the latest version and some LTS.
19- java : [ 17, 21, 25 ]
19+ java : [ 17, 25 ]
2020 # Test on the minimum Gradle version and the latest.
2121 gradle : [ 8.3, current ]
2222 exclude :
2323 # Gradle 8.3 doesn't support Java 25.
2424 - gradle : 8.3
2525 java : 25
26+ # Gradle 9 doesn't support Java 11.
27+ - gradle : current
28+ java : 11
29+ include :
30+ # We just test one JDK version on Windows.
31+ - os : windows-11-arm
32+ gradle : 8.3
33+ java : 17
34+ - os : windows-11-arm
35+ gradle : current
36+ java : 21
2637 runs-on : ${{ matrix.os }}
2738 steps :
2839 - uses : actions/checkout@v4
You can’t perform that action at this time.
0 commit comments