From 19748e045583c6fe9a151a27a29422c7539c3689 Mon Sep 17 00:00:00 2001 From: Jarrad Hope Date: Mon, 24 Apr 2017 12:25:56 +0200 Subject: [PATCH] Compress Slack Notification --- Jenkinsfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index ee89084f94..0d1714ff10 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -72,7 +72,6 @@ node { stage('Slack Notification') { def c = (testPassed ? 'good' : 'warning' ) - slackSend color: c, message: env.BRANCH_NAME + ' (Android, test: ' + (testPassed ? ':+1:' : ':-1:') + ') ' + apkUrl - slackSend color: c, message: env.BRANCH_NAME + ' (iOS) ' + ipaUrl + slackSend color: c, message: 'Branch: ' + env.BRANCH_NAME + '\nTests: ' + (testPassed ? ':+1:' : ':-1:') + ')\nAndroid: ' + apkUrl + '\n iOS: ' + ipaUrl } }