Schutzbot: don't block on container build

Move the container build to the same phase as the RPM builds. This does not make a huge difference, but should
shave off about two minutes of total CI runtime.
This commit is contained in:
Tom Gundersen 2021-03-06 14:35:07 +00:00 committed by Ondřej Budai
parent cc80957d1e
commit c7adc9128a

24
schutzbot/Jenkinsfile vendored
View file

@ -165,7 +165,18 @@ pipeline {
}
}
}
stage("Container build - x86_64") {
when {
expression {
return env.BUILD_CAUSE != 'cron';
}
}
agent { label "f33cloudbase && x86_64 && aws" }
steps {
sh "schutzbot/containerbuild.sh"
}
}
}
}
@ -203,19 +214,6 @@ pipeline {
}
}
stage("Container build - x86_64") {
when {
expression {
return env.BUILD_CAUSE != 'cron';
}
}
agent { label "f33cloudbase && x86_64 && aws" }
steps {
sh "schutzbot/containerbuild.sh"
}
}
stage("Testing 🍌") {
parallel {