From 3612c25ada08d7390663c1525a501c411d82646e Mon Sep 17 00:00:00 2001 From: Jamie Curnow Date: Fri, 4 May 2018 14:03:29 +1000 Subject: [PATCH] Fix CI --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 1b74fbb..a586bd9 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -51,10 +51,10 @@ pipeline { } post { success { - slackSend color: "#72c900", message: "SUCCESS: <${BUILD_URL}|${JOB_NAME}> build #${BUILD_NUMBER} - Duration: ${currentBuild.durationString}" + slackSend color: "#72c900", message: "SUCCESS: <${BUILD_URL}|${JOB_NAME}> build #${BUILD_NUMBER} - ${currentBuild.durationString}" } failure { - slackSend color: "#d61111", message: "FAILED: <${BUILD_URL}|${JOB_NAME}> build #${BUILD_NUMBER} - Duration: ${currentBuild.durationString}" + slackSend color: "#d61111", message: "FAILED: <${BUILD_URL}|${JOB_NAME}> build #${BUILD_NUMBER} - ${currentBuild.durationString}" } always { sh 'docker rmi $TEMP_IMAGE_NAME'