status-react/Jenkinsfile

99 lines
3.1 KiB
Plaintext
Raw Normal View History

env.LANG="en_US.UTF-8"
env.LANGUAGE="en_US.UTF-8"
env.LC_ALL="en_US.UTF-8"
def installJSDeps() {
def attempt = 1
def maxAttempts = 10
def installed = false
while (!installed && attempt <= maxAttempts) {
println "#${attempt} attempt to install npm deps"
sh 'npm install'
installed = fileExists('node_modules/web3/index.js')
2018-01-16 23:52:15 +00:00
attemp = attempt + 1
}
}
2017-11-13 09:45:18 +00:00
node ('macos1') {
2017-04-14 16:46:56 +00:00
def apkUrl = ''
def ipaUrl = ''
def testPassed = true
2017-11-13 09:45:18 +00:00
def branch;
2017-04-14 16:46:56 +00:00
load "$HOME/env.groovy"
2017-04-14 16:46:56 +00:00
try {
stage('Git & Dependencies') {
slackSend color: 'good', message: BRANCH_NAME + '(' + env.CHANGE_BRANCH + ') build started. ' + env.BUILD_URL
checkout scm
sh 'git checkout -- .'
sh 'git checkout develop'
2018-01-01 08:22:11 +00:00
sh 'git checkout remotes/origin/' + BRANCH_NAME
2017-04-14 16:46:56 +00:00
sh 'rm -rf node_modules'
2017-08-09 15:30:08 +00:00
sh 'cp .env.jenkins .env'
sh 'lein deps'
2017-12-16 22:29:59 +00:00
2018-01-16 23:52:15 +00:00
installJSDeps()
2017-12-16 22:29:59 +00:00
2017-04-14 16:46:56 +00:00
sh 'mvn -f modules/react-native-status/ios/RCTStatus dependency:unpack'
sh 'cd ios && pod install && cd ..'
}
2017-07-16 09:04:35 +00:00
stage('Tests') {
sh 'lein test-cljs'
}
2017-04-14 16:46:56 +00:00
stage('Build') {
sh 'lein prod-build'
2017-03-22 17:00:49 +00:00
}
// Android
stage('Build (Android)') {
sh 'cd android && ./gradlew assembleRelease'
}
stage('Deploy (Android)') {
withCredentials([string(credentialsId: 'diawi-token', variable: 'token')]) {
2018-01-13 12:11:37 +00:00
def job = sh(returnStdout: true, script: 'curl https://upload.diawi.com/ -F token='+token+' -F file=@android/app/build/outputs/apk/release/app-release.apk -F find_by_udid=0 -F wall_of_apps=0 | jq -r ".job"').trim()
sh 'sleep 10'
def hash = sh(returnStdout: true, script: "curl -vvv 'https://upload.diawi.com/status?token="+token+"&job="+job+"'|jq -r '.hash'").trim()
apkUrl = 'https://i.diawi.com/' + hash
sh ('echo ARTIFACT Android: ' + apkUrl)
}
}
2017-04-14 16:46:56 +00:00
// 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 'xcodebuild -exportArchive -exportPath status -archivePath status.xcarchive -exportOptionsPlist ~/archive.plist'
2017-04-14 16:46:56 +00:00
}
stage('Deploy (iOS)') {
withCredentials([string(credentialsId: 'diawi-token', variable: 'token')]) {
def job = sh(returnStdout: true, script: 'curl https://upload.diawi.com/ -F token='+token+' -F file=@status/StatusIm.ipa -F find_by_udid=0 -F wall_of_apps=0 | jq -r ".job"').trim()
sh 'sleep 10'
def hash = sh(returnStdout: true, script: "curl -vvv 'https://upload.diawi.com/status?token="+token+"&job="+job+"'|jq -r '.hash'").trim()
ipaUrl = 'https://i.diawi.com/' + hash
sh ('echo ARTIFACT iOS: ' + ipaUrl)
}
}
stage('Slack Notification') {
def c = (testPassed ? 'good' : 'warning' )
slackSend color: c, message: 'Branch: ' + BRANCH_NAME +
'\nAndroid: ' + apkUrl +
'\niOS: ' + ipaUrl
2017-04-14 16:46:56 +00:00
}
} catch (e) {
2017-11-13 09:45:18 +00:00
slackSend color: 'bad', message: BRANCH_NAME + ' failed to build. ' + env.BUILD_URL
2017-04-14 16:46:56 +00:00
throw e
}
2017-03-22 17:00:49 +00:00
}