1
0
Fork 0
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:
Sebastiaan van Stijn 2019-08-02 20:31:38 +02:00
parent 3897796548
commit 355bcf6d48
No known key found for this signature in database
GPG key ID: 76698F39D527CE8C

4
Jenkinsfile vendored
View file

@ -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") {