remove slackSend call which caused failures

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2018-11-08 19:19:22 +01:00
parent 93db31d867
commit 1a0e0c71a6
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
1 changed files with 0 additions and 24 deletions

View File

@ -90,30 +90,6 @@ pipeline {
}
stage('Notify') {
steps { script {
def dmgLink = "<${dmgUrl}|MacOS>"
def appLink = "<${appUrl}|AppImage>"
def message = (
(env.CHANGE_ID != null ?
"Build PR #${BRANCH_NAME}(${CHANGE_BRANCH}) success! " :
"Build ${btype} success! "
)+
"<${currentBuild.absoluteUrl}|${currentBuild.displayName}> "+
"(${currentBuild.durationString})\n"+
"Packages: <${apkUrl}|Android>, (<${e2eUrl}|e2e>), <${ipaUrl}|iOS>"
)
if (dmgUrl != null) {
message = message + ", <${dmgUrl}|MacOS>"
}
if (appUrl != null) {
message = message + ", <${appUrl}|AppImage>"
}
slackSend(
message: message,
color: 'good'
)
if (env.CHANGE_ID != null) {
cmn.githubNotify(
apkUrl, e2eUrl, ipaUrl, dmgUrl, appUrl,