2017-09-12 09:11:46 +00:00
|
|
|
// We need nightly builds for users who want to test apps, diawi removes old builds and limits downloads, hence the need for Artifactory.
|
|
|
|
// To see env: echo sh(returnStdout: true, script: 'env')
|
|
|
|
|
|
|
|
env.LANG="en_US.UTF-8"
|
|
|
|
env.LANGUAGE="en_US.UTF-8"
|
|
|
|
env.LC_ALL="en_US.UTF-8"
|
2017-11-11 07:05:03 +00:00
|
|
|
|
2018-01-03 11:21:54 +00:00
|
|
|
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
|
2018-01-03 11:21:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-11 07:05:03 +00:00
|
|
|
node ('macos1'){
|
2017-09-12 09:11:46 +00:00
|
|
|
def apkUrl = ''
|
|
|
|
def ipaUrl = ''
|
|
|
|
def testPassed = true
|
|
|
|
|
2017-11-11 07:05:03 +00:00
|
|
|
load "$HOME/env.groovy"
|
2017-09-12 09:11:46 +00:00
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
stage('Git & Dependencies') {
|
2017-11-11 07:05:03 +00:00
|
|
|
slackSend color: 'good', message: 'Nightly build started. ' + env.BUILD_URL
|
2018-02-28 07:38:38 +00:00
|
|
|
|
|
|
|
checkout scm
|
|
|
|
|
2017-09-12 09:11:46 +00:00
|
|
|
sh 'rm -rf node_modules'
|
|
|
|
sh 'cp .env.jenkins .env'
|
2018-01-03 11:21:54 +00:00
|
|
|
sh 'lein deps'
|
|
|
|
installJSDeps()
|
2017-12-16 22:29:59 +00:00
|
|
|
|
2017-09-12 09:11:46 +00:00
|
|
|
sh 'mvn -f modules/react-native-status/ios/RCTStatus dependency:unpack'
|
2017-12-16 22:29:59 +00:00
|
|
|
sh 'cd ios && pod install && cd ..'
|
|
|
|
}
|
2017-09-12 09:11:46 +00:00
|
|
|
|
|
|
|
stage('Tests') {
|
|
|
|
sh 'lein test-cljs'
|
|
|
|
}
|
|
|
|
|
|
|
|
stage('Build') {
|
|
|
|
sh 'lein prod-build'
|
|
|
|
}
|
|
|
|
|
|
|
|
stage('Build (Android)') {
|
|
|
|
sh 'cd android && ./gradlew assembleRelease'
|
|
|
|
}
|
|
|
|
|
|
|
|
stage('Build (iOS)') {
|
|
|
|
sh 'export RCT_NO_LAUNCH_PACKAGER=true && xcodebuild -workspace ios/StatusIm.xcworkspace -scheme StatusIm -configuration release -archivePath status clean archive'
|
2018-03-27 15:21:14 +00:00
|
|
|
sh 'xcodebuild -exportArchive -exportPath status -archivePath status.xcarchive -exportOptionsPlist ~/archive.plist'
|
2017-09-12 09:11:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
stage('Deploy (Android)') {
|
2018-01-13 12:11:37 +00:00
|
|
|
def artifact_dir = pwd() + '/android/app/build/outputs/apk/release/'
|
2017-11-11 07:05:03 +00:00
|
|
|
println (artifact_dir + 'app-release.apk')
|
|
|
|
sh ('ls -la ' + artifact_dir)
|
|
|
|
def artifact = (artifact_dir + 'app-release.apk')
|
2017-09-12 09:11:46 +00:00
|
|
|
def server = Artifactory.server('artifacts')
|
|
|
|
def shortCommit = sh(returnStdout: true, script: 'git rev-parse HEAD').trim().take(6)
|
|
|
|
def filename = 'im.status.ethereum-' + shortCommit + '.apk'
|
2017-11-11 07:05:03 +00:00
|
|
|
def newArtifact = (artifact_dir + filename)
|
2018-03-27 15:21:14 +00:00
|
|
|
sh ('mv ' + artifact + ' ' + newArtifact)
|
2018-01-14 13:39:10 +00:00
|
|
|
def uploadSpec = '{ "files": [ { "pattern": "*apk/release/' + filename + '", "target": "nightlies-local" }]}'
|
2017-09-12 09:11:46 +00:00
|
|
|
def buildInfo = server.upload(uploadSpec)
|
2017-09-12 17:01:56 +00:00
|
|
|
apkUrl = 'http://artifacts.status.im:8081/artifactory/nightlies-local/' + filename
|
2017-11-27 14:54:08 +00:00
|
|
|
|
|
|
|
sh ('echo ARTIFACT Android: ' + apkUrl)
|
2017-09-12 09:11:46 +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'
|
2018-03-26 10:56:25 +00:00
|
|
|
def hash = sh(returnStdout: true, script: "curl -vvv 'https://upload.diawi.com/status?token="+token+"&job="+job+"'|jq -r '.hash'").trim()
|
2017-09-12 17:01:56 +00:00
|
|
|
ipaUrl = 'https://i.diawi.com/' + hash
|
2017-11-27 14:54:08 +00:00
|
|
|
|
|
|
|
sh ('echo ARTIFACT iOS: ' + ipaUrl)
|
2017-09-12 09:11:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
slackSend color: 'bad', message: 'Nightly build (develop) failed to build. ' + env.BUILD_URL
|
|
|
|
throw e
|
|
|
|
}
|
|
|
|
|
|
|
|
stage('Slack Notification') {
|
|
|
|
def c = (testPassed ? 'good' : 'warning' )
|
|
|
|
slackSend color: c, message: 'Nightly build (develop) \nTests: ' + (testPassed ? ':+1:' : ':-1:') + ')\nAndroid: ' + apkUrl + '\n iOS: ' + ipaUrl
|
2018-02-06 19:38:08 +00:00
|
|
|
build job: 'status-react/status-nightly-publish-link', parameters: [[$class: 'StringParameterValue', name: 'APK_URL', value: apkUrl], [$class: 'StringParameterValue', name: 'IOS_URL', value: ipaUrl]]
|
2017-09-12 09:11:46 +00:00
|
|
|
}
|
2017-11-11 07:05:03 +00:00
|
|
|
}
|