Selaa lähdekoodia

Merge pull request #40669 from thaJeztah/switch-to-s390x-ubuntu-1804

Switch to s390x Ubuntu 18.04 (carry 40663)
Sebastiaan van Stijn 5 vuotta sitten
vanhempi
commit
b084ccda9d
1 muutettua tiedostoa jossa 4 lisäystä ja 18 poistoa
  1. 4 18
      Jenkinsfile

+ 4 - 18
Jenkinsfile

@@ -474,13 +474,7 @@ pipeline {
                         beforeAgent true
                         beforeAgent true
                         expression { params.s390x }
                         expression { params.s390x }
                     }
                     }
-                    agent { label 's390x-ubuntu-1604' }
-                    // s390x machines run on Docker 18.06, and buildkit has some
-                    // bugs on that version. Build and use buildx instead.
-                    environment {
-                        USE_BUILDX      = '1'
-                        DOCKER_BUILDKIT = '0'
-                    }
+                    agent { label 's390x-ubuntu-1804' }
 
 
                     stages {
                     stages {
                         stage("Print info") {
                         stage("Print info") {
@@ -497,8 +491,7 @@ pipeline {
                         stage("Build dev image") {
                         stage("Build dev image") {
                             steps {
                             steps {
                                 sh '''
                                 sh '''
-                                make bundles/buildx
-                                bundles/buildx build --load --force-rm --build-arg APT_MIRROR=${APT_MIRROR} -t docker:${GIT_COMMIT} .
+                                docker build --force-rm --build-arg APT_MIRROR -t docker:${GIT_COMMIT} .
                                 '''
                                 '''
                             }
                             }
                         }
                         }
@@ -587,13 +580,7 @@ pipeline {
                         not { changeRequest() }
                         not { changeRequest() }
                         expression { params.s390x }
                         expression { params.s390x }
                     }
                     }
-                    agent { label 's390x-ubuntu-1604' }
-                    // s390x machines run on Docker 18.06, and buildkit has some
-                    // bugs on that version. Build and use buildx instead.
-                    environment {
-                        USE_BUILDX      = '1'
-                        DOCKER_BUILDKIT = '0'
-                    }
+                    agent { label 's390x-ubuntu-1804' }
 
 
                     stages {
                     stages {
                         stage("Print info") {
                         stage("Print info") {
@@ -610,8 +597,7 @@ pipeline {
                         stage("Build dev image") {
                         stage("Build dev image") {
                             steps {
                             steps {
                                 sh '''
                                 sh '''
-                                make bundles/buildx
-                                bundles/buildx build --load --force-rm --build-arg APT_MIRROR -t docker:${GIT_COMMIT} .
+                                docker build --force-rm --build-arg APT_MIRROR -t docker:${GIT_COMMIT} .
                                 '''
                                 '''
                             }
                             }
                         }
                         }