Skip to content

Commit

Permalink
K8SPSMDB-1123 add psmdb 8.0 image build (#3077)
Browse files Browse the repository at this point in the history
  • Loading branch information
hors authored Dec 19, 2024
1 parent 357e8da commit efffaa9
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions cloud/jenkins/psmdb_docker_build.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,9 @@ pipeline {
retry(3) {
build('mongod7.0')
}
retry(3) {
build('mongod8.0')
}
}
}

Expand All @@ -153,6 +156,8 @@ pipeline {
pushImageToDocker('mongod6.0-debug')
pushImageToDocker('mongod7.0')
pushImageToDocker('mongod7.0-debug')
pushImageToDocker('mongod8.0')
pushImageToDocker('mongod8.0-debug')
pushImageToDocker('backup')
}
}
Expand Down Expand Up @@ -198,6 +203,16 @@ pipeline {
}
}
}
stage('mongod8.0'){
steps {
checkImageForDocker('main-mongod8.0')
}
post {
always {
junit allowEmptyResults: true, skipPublishingChecks: true, testResults: "*-mongod8.0-psmdb.xml"
}
}
}
stage('mongod5.0-debug'){
steps {
checkImageForDocker('main-mongod5.0-debug')
Expand Down Expand Up @@ -228,6 +243,16 @@ pipeline {
}
}
}
stage('mongod8.0-debug'){
steps {
checkImageForDocker('main-mongod8.0-debug')
}
post {
always {
junit allowEmptyResults: true, skipPublishingChecks: true, testResults: "*-main-mongod8.0-debug-psmdb.xml"
}
}
}
stage('PBM'){
steps {
checkImageForDocker('main-backup')
Expand Down

0 comments on commit efffaa9

Please sign in to comment.