Skip to content

Commit 8d9fd1e

Browse files
committed
Add Java 17 verification to CI pipeline.
The pipeline replaces the one for 16. No changes apart from the CI configuration was necessary. Closes #2307 Original pull request #2308
1 parent 60b1182 commit 8d9fd1e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Jenkinsfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ pipeline {
6767
}
6868
}
6969

70-
stage("test: baseline (jdk16)") {
70+
stage("test: baseline (jdk17)") {
7171
agent {
7272
label 'data'
7373
}
@@ -78,7 +78,7 @@ pipeline {
7878
steps {
7979
script {
8080
docker.withRegistry('', 'hub.docker.com-springbuildmaster') {
81-
docker.image('adoptopenjdk/openjdk16:latest').inside('-v $HOME:/tmp/jenkins-home') {
81+
docker.image('openjdk:17-bullseye').inside('-v $HOME:/tmp/jenkins-home') {
8282
sh 'MAVEN_OPTS="-Duser.name=jenkins -Duser.home=/tmp/jenkins-home" ./mvnw -s settings.xml -Pjava11 clean dependency:list test -Dsort -Dbundlor.enabled=false -U -B'
8383
}
8484
}

0 commit comments

Comments
 (0)