added slakc notifications

This commit is contained in:
carlitalabbe 2020-04-02 16:22:39 -04:00
parent 00d58ba676
commit 86a120d268

14
Jenkinsfile vendored
View file

@ -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}"
}
} }