Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
strategy:
matrix:
os: [ 'ubuntu-latest', 'windows-latest', 'macOS-latest' ]
jdk: [ 11, 17, 21, 23 ]
jdk: [ 11, 17, 21, 24 ]
dist: [ 'temurin', 'adopt-openj9', 'zulu' ]
exclude:
# was already built
Expand All @@ -71,9 +71,9 @@ jobs:
# no OpenJ9 21
- dist: adopt-openj9
jdk: 21
# no OpenJ9 23
# no OpenJ9 24
- dist: adopt-openj9
jdk: 23
jdk: 24
fail-fast: false

runs-on: ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion .jenkins.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ pipeline {
axis {
// https://cwiki.apache.org/confluence/display/INFRA/JDK+Installation+Matrix
name 'MATRIX_JDK'
values 'jdk_11_latest', 'jdk_17_latest', 'jdk_21_latest', 'jdk_23_latest'
values 'jdk_11_latest', 'jdk_17_latest', 'jdk_21_latest', 'jdk_24_latest'
}
// Additional axes, like OS and maven version can be configured here.
}
Expand Down