diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-06-20 21:04:20 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-06-20 21:04:20 +0200 |
commit | 1f2388d265d9fb3cd19a9be719273e81a0f8af2a (patch) | |
tree | 9948c81cde3589f4acb022b7eac9606f44f4c255 /Jenkinsfile | |
parent | f6a22713708902cb564ceda50cd8a393fdfb84f0 (diff) | |
download | vyos-build-1f2388d265d9fb3cd19a9be719273e81a0f8af2a.tar.gz vyos-build-1f2388d265d9fb3cd19a9be719273e81a0f8af2a.zip |
Docker: T3641: temporary disable arm64 builds
qemu: uncaught target signal 11 (Segmentation fault) - core dumped
/var/lib/dpkg/info/libc-bin.postinst: line 53: 2576 Segmentation fault ldconfig
qemu: uncaught target signal 11 (Segmentation fault) - core dumped
/var/lib/dpkg/info/libc-bin.postinst: line 53: 2579 Segmentation fault ldconfig --verbose
dpkg: error processing package libc-bin (--configure):
installed libc-bin package post-installation script subprocess returned error exit status 139
Errors were encountered while processing:
libc-bin
Diffstat (limited to 'Jenkinsfile')
-rw-r--r-- | Jenkinsfile | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index 37898220..1438da84 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -68,22 +68,22 @@ node('Docker') { // } // } // }, - 'arm64': { - script { - dir('docker') { - sh """ - docker build -t ${env.DOCKER_IMAGE_ARM64} --build-arg ARCH=arm64v8/ . - - """ - - if (! isCustomBuild()) { - withDockerRegistry([credentialsId: "DockerHub"]) { - sh "docker push ${env.DOCKER_IMAGE_ARM64}" - } - } - } - } - } +// 'arm64': { +// script { +// dir('docker') { +// sh """ +// docker build -t ${env.DOCKER_IMAGE_ARM64} --build-arg ARCH=arm64v8/ . +// +// """ +// +// if (! isCustomBuild()) { +// withDockerRegistry([credentialsId: "DockerHub"]) { +// sh "docker push ${env.DOCKER_IMAGE_ARM64}" +// } +// } +// } +// } +// } ) } stage('Build timestamp') { |