stranger danger

This commit is contained in:
carlitalabbe 2020-04-02 22:17:31 -04:00
parent 9e1583d7a7
commit 64cfb41771

4
Jenkinsfile vendored
View file

@ -42,12 +42,12 @@ pipeline {
post { post {
success{ success{
slackSend slackSend
color: 'red', color: 'good',
message: "*${currentBuild.currentResult}:* Job ${env.JOB_NAME} build ${env.BUILD_NUMBER} \n More info at: ${env.BUILD_URL}" message: "*${currentBuild.currentResult}:* Job ${env.JOB_NAME} build ${env.BUILD_NUMBER} \n More info at: ${env.BUILD_URL}"
} }
failure{ failure{
slackSend slackSend
color: 'green', color: 'danger',
message: "*${currentBuild.currentResult}:* Job ${env.JOB_NAME} build ${env.BUILD_NUMBER} \n More info at: ${env.BUILD_URL}" message: "*${currentBuild.currentResult}:* Job ${env.JOB_NAME} build ${env.BUILD_NUMBER} \n More info at: ${env.BUILD_URL}"
} }
} }