schutzbot: don't build containers for aarch64

We do not yet build all our packages for aarch64, so this would
fall back on the RPMs in the repository. In `main` that seems to
work, as osbuild-composer exists in the base repositoires. Though
we obviously want to test the most recent commit, not the released
RPM, so this is maksing the problem.

As of this PR, the build would fail though: We are now build
UBI containers, where osbuild-composer does not exist, and we have
split the RPM into the new osbuild-composer-core, which does not
yet exist in any base repository.
This commit is contained in:
Tom Gundersen 2020-12-17 17:48:38 +01:00
parent 397c374b8b
commit c9077c8a7f

18
schutzbot/Jenkinsfile vendored
View file

@ -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"
}
}