aboutsummaryrefslogtreecommitdiffstats
path: root/Jenkinsfile-itest
diff options
context:
space:
mode:
authorMartin Stockhammer <martin_s@apache.org>2018-05-06 16:57:46 +0200
committerMartin Stockhammer <martin_s@apache.org>2018-05-06 16:57:46 +0200
commit9add27af0bc1329a8cdb15b71cc47720e0443960 (patch)
treea4cd5a9d9074f4baa9b36cfa2f66b0aae6c870d2 /Jenkinsfile-itest
parentadc3164cb0746b3123d03c1bfc76d9ed3746ad56 (diff)
downloadarchiva-9add27af0bc1329a8cdb15b71cc47720e0443960.tar.gz
archiva-9add27af0bc1329a8cdb15b71cc47720e0443960.zip
Cleanup of build file
Diffstat (limited to 'Jenkinsfile-itest')
-rw-r--r--Jenkinsfile-itest12
1 files changed, 6 insertions, 6 deletions
diff --git a/Jenkinsfile-itest b/Jenkinsfile-itest
index fe7fea4cf..5e33c508e 100644
--- a/Jenkinsfile-itest
+++ b/Jenkinsfile-itest
@@ -47,7 +47,7 @@ pipeline {
}
post {
failure {
- notifyBuild("Checkout failure (${currentBuild.currentResult})")
+ notifyBuild("Checkout failure")
}
}
}
@@ -89,7 +89,7 @@ pipeline {
junit testResults: '**/target/failsafe-reports/TEST-*.xml'
}
failure {
- notifyBuild("Build / Test failure (${currentBuild.currentResult})")
+ notifyBuild("Failure in Htmlunit test stage")
}
}
}
@@ -139,7 +139,7 @@ pipeline {
junit testResults: '**/target/failsafe-reports/TEST-*.xml'
}
failure {
- notifyBuild("Build / Test failure (${currentBuild.currentResult})")
+ notifyBuild("Failure in Chrome test stage")
}
}
}
@@ -147,7 +147,7 @@ pipeline {
}
post {
unstable {
- notifyBuild("Unstable Build (${currentBuild.currentResult})")
+ notifyBuild("Unstable Build")
}
always {
cleanWs deleteDirs: true, notFailBuild: true, patterns: [[pattern: '.repository', type: 'EXCLUDE']]
@@ -156,7 +156,7 @@ pipeline {
script {
def previousResult = currentBuild.previousBuild?.result
if (previousResult && !currentBuild.resultIsWorseOrEqualTo(previousResult)) {
- notifyBuild("Fixed: ${currentBuild.currentResult}")
+ notifyBuild("Fixed")
}
}
}
@@ -188,4 +188,4 @@ def notifyBuild(String buildStatus) {
)
}
-// vim: et:ts=2:sw=2:ft=groovy
+// vim: et:ts=4:sw=4:ft=groovy