Allow RHEL 8.3 failures to fail pipeline

Now that RHEL 8.3 pulls from the beta CDN, let's stop hiding the errors
and allow them to make the pipeline fail.

Signed-off-by: Major Hayden <major@redhat.com>
This commit is contained in:
Major Hayden 2020-07-08 14:50:11 -05:00 committed by Major Hayden
parent dac085d035
commit 0ce53cf479

27
schutzbot/Jenkinsfile vendored
View file

@ -259,14 +259,7 @@ pipeline {
environment { TEST_TYPE = "base" }
steps {
unstash 'rhel83'
// If RHEL 8.3 fails, let the stage fail without
// marking the entire pipeline as a failure. Once
// RHEL 8.3 calms down and tests begin to pass,
// remove this wrapper and make this test look like
// the others.
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
run_tests('base')
}
run_tests('base')
}
post {
always {
@ -282,14 +275,7 @@ pipeline {
}
steps {
unstash 'rhel83'
// If RHEL 8.3 fails, let the stage fail without
// marking the entire pipeline as a failure. Once
// RHEL 8.3 calms down and tests begin to pass,
// remove this wrapper and make this test look like
// the others.
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
run_tests('image')
}
run_tests('image')
}
post {
always {
@ -305,14 +291,7 @@ pipeline {
}
steps {
unstash 'rhel83'
// If RHEL 8.3 fails, let the stage fail without
// marking the entire pipeline as a failure. Once
// RHEL 8.3 calms down and tests begin to pass,
// remove this wrapper and make this test look like
// the others.
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
run_tests('integration')
}
run_tests('integration')
}
post {
always {