Skip to content

Commit 4fcc710

Browse files
committed
Align Docker image naming with used JDK.
See #1529
1 parent 1ec6230 commit 4fcc710

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Jenkinsfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,18 +38,18 @@ pipeline {
3838
}
3939
}
4040
}
41-
stage('Publish JDK 21 + Cassandra 3.11') {
41+
stage('Publish JDK.next + Cassandra 3.11') {
4242
when {
4343
anyOf {
44-
changeset "ci/openjdk21-8-cassandra-3.11/**"
44+
changeset "ci/openjdk23-8-cassandra-3.11/**"
4545
changeset "ci/pipeline.properties"
4646
}
4747
}
4848
agent { label 'data' }
4949
options { timeout(time: 30, unit: 'MINUTES') }
5050
steps {
5151
script {
52-
def image = docker.build("springci/spring-data-with-cassandra-3.11:${p['java.next.tag']}", "--build-arg BASE=${p['docker.java.next.image']} --build-arg CASSANDRA=${p['docker.cassandra.3.version']} ci/openjdk21-8-cassandra-3.11/")
52+
def image = docker.build("springci/spring-data-with-cassandra-3.11:${p['java.next.tag']}", "--build-arg BASE=${p['docker.java.next.image']} --build-arg CASSANDRA=${p['docker.cassandra.3.version']} ci/openjdk23-8-cassandra-3.11/")
5353
docker.withRegistry(p['docker.registry'], p['docker.credentials']) {
5454
image.push()
5555
}

0 commit comments

Comments
 (0)