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:
parent
cc80957d1e
commit
c7adc9128a
1 changed files with 11 additions and 13 deletions
24
schutzbot/Jenkinsfile
vendored
24
schutzbot/Jenkinsfile
vendored
|
|
@ -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 {
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue