Merge pull request #8133 from docker/fix-release-jenkins

Add cgroup1 as filter label
This commit is contained in:
Anca Iordache 2021-02-18 16:51:55 +01:00 committed by GitHub
commit 42c2cfd7a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

4
Jenkinsfile vendored
View File

@ -23,7 +23,7 @@ pipeline {
parallel { parallel {
stage('alpine') { stage('alpine') {
agent { agent {
label 'ubuntu && amd64 && !zfs' label 'ubuntu-2004 && amd64 && !zfs && cgroup1'
} }
steps { steps {
buildImage('alpine') buildImage('alpine')
@ -31,7 +31,7 @@ pipeline {
} }
stage('debian') { stage('debian') {
agent { agent {
label 'ubuntu && amd64 && !zfs' label 'ubuntu-2004 && amd64 && !zfs && cgroup1'
} }
steps { steps {
buildImage('debian') buildImage('debian')