Skip to content

Commit

Permalink
SOTE (#286)
Browse files Browse the repository at this point in the history
  • Loading branch information
bassplay3r authored May 2, 2020
1 parent 6dd940f commit b034c08
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,15 @@ node {
stages: stages
)

if (env.STOP_ON_STAGE_FAILURES == 'false') {
stage('Check-Status') {
if (process_status_files() == false) {
failures = readFile file: 'failure_report.txt'
error 'Check-Status: One or more stages have failed\n' + failures
}
}
}

stage('Propagate') {
propagate_changes(
stage: 'Propagate'
Expand Down

0 comments on commit b034c08

Please sign in to comment.