From 407fa7de018ef31da49ecdb44179d26f696fb443 Mon Sep 17 00:00:00 2001 From: Ivan Borovkov Date: Tue, 6 Feb 2018 21:38:08 +0200 Subject: [PATCH] publish apk and ios links on public page --- Jenkinsfile.nightly | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Jenkinsfile.nightly b/Jenkinsfile.nightly index 7c7b744810..ab515493f5 100644 --- a/Jenkinsfile.nightly +++ b/Jenkinsfile.nightly @@ -94,5 +94,7 @@ node ('macos1'){ stage('Slack Notification') { def c = (testPassed ? 'good' : 'warning' ) slackSend color: c, message: 'Nightly build (develop) \nTests: ' + (testPassed ? ':+1:' : ':-1:') + ')\nAndroid: ' + apkUrl + '\n iOS: ' + ipaUrl + # this will update apk url on public page + build job: 'status-react/status-nightly-publish-link', parameters: [[$class: 'StringParameterValue', name: 'APK_URL', value: apkUrl], [$class: 'StringParameterValue', name: 'IOS_URL', value: ipaUrl]] } }