From da9d62634edaa39c777e60e9c5ef87d4e4d9493a Mon Sep 17 00:00:00 2001 From: carlitalabbe Date: Thu, 2 Apr 2020 22:27:34 -0400 Subject: [PATCH] simplllle --- Jenkinsfile | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index d57ea064b..83ab901c2 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -40,15 +40,16 @@ pipeline { // Post-build actions post { + success{ - slackSend - color: '#00ba09', - message: "*${currentBuild.currentResult}:* Job ${env.JOB_NAME} build ${env.BUILD_NUMBER} \n More info at: ${env.BUILD_URL}" + slackSend color: '#00ba09', message: 'test' + //slackSend color: '#00ba09', + //message: "*${currentBuild.currentResult}:* Job ${env.JOB_NAME} build ${env.BUILD_NUMBER} \n More info at: ${env.BUILD_URL}" } failure{ - slackSend - color: '#ff0000', - message: "*${currentBuild.currentResult}:* Job ${env.JOB_NAME} build ${env.BUILD_NUMBER} \n More info at: ${env.BUILD_URL}" + slackSend color: '#FF0000', message: 'test' + //slackSend color: '#ff0000', + // message: "*${currentBuild.currentResult}:* Job ${env.JOB_NAME} build ${env.BUILD_NUMBER} \n More info at: ${env.BUILD_URL}" } }