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:
parent
dac085d035
commit
0ce53cf479
1 changed files with 3 additions and 24 deletions
27
schutzbot/Jenkinsfile
vendored
27
schutzbot/Jenkinsfile
vendored
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue