Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Jenkinsfile to add Java 16 builds #531

Merged
merged 5 commits into from
Mar 18, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ pipeline {
dockerBuild(11)
}
}
stage('Linux armv7l 14') {
stage('Linux armv7l 15') {
agent {
label "dockerBuild&&linux&&x64"
}
Expand All @@ -61,10 +61,10 @@ pipeline {
// Setup docker for multiarch builds
sh label: 'qemu-user', script: 'sudo apt-get -y install qemu-user'
sh label: 'docker-qemu', script: 'docker run --rm --privileged multiarch/qemu-user-static --reset -p yes'
dockerBuild(14)
dockerBuild(15)
}
}
stage('Linux armv7l 15') {
stage('Linux armv7l 16') {
agent {
label "dockerBuild&&linux&&x64"
}
Expand All @@ -76,7 +76,7 @@ pipeline {
// Setup docker for multiarch builds
sh label: 'qemu-user', script: 'sudo apt-get -y install qemu-user'
sh label: 'docker-qemu', script: 'docker run --rm --privileged multiarch/qemu-user-static --reset -p yes'
dockerBuild(15)
dockerBuild(16)
}
}
stage('Linux ppc64le') {
Expand Down Expand Up @@ -121,26 +121,26 @@ pipeline {
dockerManifest(11)
}
}
stage("Manifest 14") {
stage("Manifest 15") {
agent {
label "dockerBuild&&linux&&x64"
}
environment {
DOCKER_CLI_EXPERIMENTAL = "enabled"
}
steps {
dockerManifest(14)
dockerManifest(15)
}
}
stage("Manifest 15") {
stage("Manifest 16") {
agent {
label "dockerBuild&&linux&&x64"
}
environment {
DOCKER_CLI_EXPERIMENTAL = "enabled"
}
steps {
dockerManifest(15)
dockerManifest(16)
}
}
}
Expand Down