File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -92,11 +92,11 @@ pipeline {
92
92
}
93
93
post {
94
94
success {
95
- slackSend color: "#72c900", message: "SUCCESS: <${BUILD_URL}|${JOB_NAME}> build #${BUILD_NUMBER} - ${currentBuild.durationString}"
95
+ juxtapose event: success
96
96
sh 'figlet "SUCCESS"'
97
97
}
98
98
failure {
99
- slackSend color: "#d61111", message: "FAILED: <${BUILD_URL}|${JOB_NAME}> build #${BUILD_NUMBER} - ${currentBuild.durationString}"
99
+ juxtapose event: failure
100
100
sh 'figlet "FAILURE"'
101
101
}
102
102
}
@@ -106,3 +106,4 @@ def getPackageVersion() {
106
106
ver = sh(script: 'docker run --rm -v $(pwd)/manager:/data $DOCKER_CI_TOOLS bash -c "cat /data/package.json|jq -r \'.version\'"', returnStdout: true)
107
107
return ver.trim()
108
108
}
109
+
You can’t perform that action at this time.
0 commit comments