Fail the build if deploy fails

Fixes: gh-5997
This commit is contained in:
Rob Winch 2018-10-18 16:03:00 -05:00
parent e1b095df32
commit d5d9adf11d
1 changed files with 3 additions and 0 deletions

3
Jenkinsfile vendored
View File

@ -121,6 +121,9 @@ try {
} }
} }
} }
} catch(Exception e) {
currentBuild.result = 'FAILED: deploys'
throw e
} finally { } finally {
def buildStatus = currentBuild.result def buildStatus = currentBuild.result
def buildNotSuccess = !SUCCESS.equals(buildStatus) def buildNotSuccess = !SUCCESS.equals(buildStatus)