Declare build a SUCCESS by default.

Innocent unil proven guilty!
This commit is contained in:
John Blum
2018-05-17 21:38:59 -07:00
parent 2493d36148
commit 69226895d9

3
Jenkinsfile vendored
View File

@@ -7,7 +7,7 @@ properties(projectProperties)
def SUCCESS = hudson.model.Result.SUCCESS.toString()
currentBuild.result = 'UNKNOWN'
currentBuild.result = SUCCESS
try {
parallel check: {
@@ -16,7 +16,6 @@ try {
checkout scm
try {
sh "./gradlew clean check --refresh-dependencies --no-daemon"
currentBuild.result = SUCCESS
}
catch (Exception cause) {
currentBuild.result = 'FAILED: check'