Update Jenkinsfile

This commit is contained in:
Alex 2020-03-11 16:23:06 -04:00 committed by GitHub
parent da33ce4878
commit 452d85e2fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

10
Jenkinsfile vendored
View file

@ -23,4 +23,14 @@ pipeline {
} }
} }
} }
post {
success {
slackSend (color: '#00FF00', message: "SUCCESSFUL: Job '${env.JOB_NAME} [${env.BUILD_NUMBER}]' (${env.BUILD_URL})")
}
failure {
slackSend (color: '#FF0000', message: "FAILED: Job '${env.JOB_NAME} [${env.BUILD_NUMBER}]' (${env.BUILD_URL})")
}
}
} }