Skip to content

Commit

Permalink
Fix Java 23 Docker build paths.
Browse files Browse the repository at this point in the history
See #4817
  • Loading branch information
mp911de committed Nov 15, 2024
1 parent ef0a561 commit 315b910
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ pipeline {

steps {
script {
def image = docker.build("springci/spring-data-with-mongodb-8.0:${p['java.next.tag']}", "--build-arg BASE=${p['docker.java.next.image']} --build-arg MONGODB=${p['docker.mongodb.8.0.version']} ci/openjdk17-mongodb-8.0/")
def image = docker.build("springci/spring-data-with-mongodb-8.0:${p['java.next.tag']}", "--build-arg BASE=${p['docker.java.next.image']} --build-arg MONGODB=${p['docker.mongodb.8.0.version']} ci/openjdk23-mongodb-8.0/")
docker.withRegistry(p['docker.registry'], p['docker.credentials']) {
image.push()
}
Expand Down Expand Up @@ -244,7 +244,7 @@ pipeline {
}
}

stage("test: MongoDB 8.0 (main)") {
stage("test: MongoDB 8.0 (next)") {
agent {
label 'data'
}
Expand Down
File renamed without changes.

0 comments on commit 315b910

Please sign in to comment.