merge Android and iOS notifications from Jenkins, remove tests line

This commit is contained in:
Roman Volosovskyi 2017-11-16 18:40:57 +01:00
parent 7e6507be7c
commit a7abed4dbf
1 changed files with 5 additions and 8 deletions

13
Jenkinsfile vendored
View File

@ -58,11 +58,6 @@ node ('macos1') {
// testPassed = false // testPassed = false
// } // }
stage('Slack Notification Android') {
def c = (testPassed ? 'good' : 'warning' )
slackSend color: c, message: 'Branch: ' + BRANCH_NAME + '\nTests: ' + (testPassed ? ':+1:' : ':-1:') + ')\nAndroid: ' + apkUrl
}
// iOS // iOS
stage('Build (iOS)') { stage('Build (iOS)') {
sh 'export RCT_NO_LAUNCH_PACKAGER=true && xcodebuild -workspace ios/StatusIm.xcworkspace -scheme StatusIm -configuration release -archivePath status clean archive' sh 'export RCT_NO_LAUNCH_PACKAGER=true && xcodebuild -workspace ios/StatusIm.xcworkspace -scheme StatusIm -configuration release -archivePath status clean archive'
@ -77,9 +72,11 @@ node ('macos1') {
} }
} }
stage('Slack Notification iOS') { stage('Slack Notification') {
def c = (testPassed ? 'good' : 'warning' ) def c = (testPassed ? 'good' : 'warning' )
slackSend color: c, message: 'Branch: ' + BRANCH_NAME + '\nTests: ' + (testPassed ? ':+1:' : ':-1:') + ')\niOS: ' + ipaUrl slackSend color: c, message: 'Branch: ' + BRANCH_NAME +
'\nAndroid: ' + apkUrl +
'\niOS: ' + ipaUrl
} }
} catch (e) { } catch (e) {