Skip to content

Commit

Permalink
Add noble (#2680)
Browse files Browse the repository at this point in the history
  • Loading branch information
adivinho authored Jun 7, 2024
1 parent 1753f70 commit aba81f1
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 0 deletions.
13 changes: 13 additions & 0 deletions pxb/jenkins/pxb-24.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,19 @@ pipeline {
uploadDEBfromAWS("deb/", AWS_STASH_PATH)
}
}
stage('Ubuntu Noble(24.04)') {
agent {
label 'docker'
}
steps {
cleanUpWS()
popArtifactFolder("source_deb/", AWS_STASH_PATH)
buildStage("ubuntu:noble", "--build_deb=1")

pushArtifactFolder("deb/", AWS_STASH_PATH)
uploadDEBfromAWS("deb/", AWS_STASH_PATH)
}
}
stage('Debian Buster(10)') {
agent {
label 'docker'
Expand Down
14 changes: 14 additions & 0 deletions pxc/jenkins/percona-xtradb-cluster-5.7.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,20 @@ pipeline {
pushArtifactFolder("deb/", AWS_STASH_PATH)
}
}
stage('Ubuntu Noble(24.04)') {
agent {
label 'docker-32gb'
}
steps {
cleanUpWS()
unstash 'pxc-57.properties'
popArtifactFolder("source_deb/", AWS_STASH_PATH)
buildStage("ubuntu:noble", "--build_deb=1")

stash includes: 'test/pxc-57.properties', name: 'pxc-57.properties'
pushArtifactFolder("deb/", AWS_STASH_PATH)
}
}
stage('Debian Buster(10)') {
agent {
label 'docker-32gb'
Expand Down
15 changes: 15 additions & 0 deletions pxc/jenkins/percona-xtradb-cluster-8.0.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,21 @@ pipeline {
uploadDEBfromAWS("deb/", AWS_STASH_PATH)
}
}
stage('Ubuntu Noble(24.04)') {
agent {
label 'docker-32gb'
}
steps {
cleanUpWS()
unstash 'pxc-80.properties'
popArtifactFolder("source_deb/", AWS_STASH_PATH)
buildStage("ubuntu:noble", "--build_deb=1")

stash includes: 'test/pxc-80.properties', name: 'pxc-80.properties'
pushArtifactFolder("deb/", AWS_STASH_PATH)
uploadDEBfromAWS("deb/", AWS_STASH_PATH)
}
}
stage('Debian Buster(10)') {
agent {
label 'docker-32gb'
Expand Down

0 comments on commit aba81f1

Please sign in to comment.