mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Jenkinsfile: disable buildkit on power and s390x
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
3897796548
commit
355bcf6d48
1 changed files with 4 additions and 0 deletions
4
Jenkinsfile
vendored
4
Jenkinsfile
vendored
|
@ -241,6 +241,8 @@ pipeline {
|
||||||
expression { params.z }
|
expression { params.z }
|
||||||
}
|
}
|
||||||
agent { label 's390x-ubuntu-1604' }
|
agent { label 's390x-ubuntu-1604' }
|
||||||
|
// s390x machines run on Docker 18.06, and buildkit has some bugs on that version
|
||||||
|
environment { DOCKER_BUILDKIT = '0' }
|
||||||
|
|
||||||
stages {
|
stages {
|
||||||
stage("Print info") {
|
stage("Print info") {
|
||||||
|
@ -305,6 +307,8 @@ pipeline {
|
||||||
expression { params.powerpc }
|
expression { params.powerpc }
|
||||||
}
|
}
|
||||||
agent { label 'ppc64le-ubuntu-1604' }
|
agent { label 'ppc64le-ubuntu-1604' }
|
||||||
|
// power machines run on Docker 18.06, and buildkit has some bugs on that version
|
||||||
|
environment { DOCKER_BUILDKIT = '0' }
|
||||||
|
|
||||||
stages {
|
stages {
|
||||||
stage("Print info") {
|
stage("Print info") {
|
||||||
|
|
Loading…
Reference in a new issue