diff --git a/schutzbot/Jenkinsfile b/schutzbot/Jenkinsfile index 12aa4dd4e..4d5c9b326 100644 --- a/schutzbot/Jenkinsfile +++ b/schutzbot/Jenkinsfile @@ -111,20 +111,10 @@ pipeline { } } - stage("Container build") { - parallel { - stage('aarch64') { - agent { label "f33cloudbase && aarch64 && aws" } - steps { - sh "schutzbot/containerbuild.sh" - } - } - stage('x86_64') { - agent { label "f33cloudbase && x86_64 && aws" } - steps { - sh "schutzbot/containerbuild.sh" - } - } + stage("Container build - x86_64") { + agent { label "f33cloudbase && x86_64 && aws" } + steps { + sh "schutzbot/containerbuild.sh" } }