diff --git a/Jenkinsfile b/Jenkinsfile index 8b110aaa8..08e73aa4f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -32,4 +32,18 @@ pipeline { } } + +// Post-build actions + post { + slackSend channel: '#slack-test-channel', + color: COLOR_MAP[currentBuild.currentResult], + message: "*${currentBuild.currentResult}:* Job ${env.JOB_NAME} build ${env.BUILD_NUMBER} by ${BUILD_USER}\n More info at: ${env.BUILD_URL}" + + } + + + + } + +