From 0a1c3bcd8810949e99fc7aa0f7ed882035003397 Mon Sep 17 00:00:00 2001 From: Oskar Thoren Date: Fri, 5 Jan 2018 16:53:39 +0900 Subject: [PATCH] Jenkinsfile.release Like Jenkinsfile.nightly but with .env.prod mainly. --- Jenkinsfile.release | 101 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 101 insertions(+) create mode 100644 Jenkinsfile.release diff --git a/Jenkinsfile.release b/Jenkinsfile.release new file mode 100644 index 0000000000..c1b20bb025 --- /dev/null +++ b/Jenkinsfile.release @@ -0,0 +1,101 @@ +// We need release 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" + +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') + } +} + +node ('macos1'){ + def apkUrl = '' + def ipaUrl = '' + def testPassed = true + + load "$HOME/env.groovy" + + try { + + stage('Git & Dependencies') { + slackSend color: 'good', message: 'Release build started. ' + env.BUILD_URL + git([url: 'https://github.com/status-im/status-react.git', branch: 'develop']) + // Checkout master because used for iOS Plist version information + sh 'git fetch --tags' + sh 'git checkout -- .' + sh 'git checkout develop' + sh 'rm -rf node_modules' + sh 'cp .env.prod .env' + sh 'lein deps' + installJSDeps() + sh '[ -f node_modules/react-native/packager/src/JSTransformer/index.js ] && sed -i "" "s/301000/1201000/g" node_modules/react-native/packager/src/JSTransformer/index.js || echo "New packager"' + + // Fix silly RN upgrade weird env issue + sh 'cp findSymlinkedModules.js.patch node_modules/react-native/local-cli/util/findSymlinkedModules.js' + + sh 'mvn -f modules/react-native-status/ios/RCTStatus dependency:unpack' + sh 'cd ios && pod install && cd ..' + } + + 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' + sh 'xcodebuild -exportArchive -exportPath status -archivePath status.xcarchive -exportOptionsPlist ~/archive.plist' + } + + stage('Deploy (Android)') { + def artifact_dir = pwd() + '/android/app/build/outputs/apk/' + println (artifact_dir + 'app-release.apk') + sh ('ls -la ' + artifact_dir) + def artifact = (artifact_dir + 'app-release.apk') + 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' + def newArtifact = (artifact_dir + filename) + sh ('mv ' + artifact + ' ' + newArtifact) + def uploadSpec = '{ "files": [ { "pattern": "*apk/' + filename + '", "target": "nightlies-local" }]}' + def buildInfo = server.upload(uploadSpec) + apkUrl = 'http://artifacts.status.im:8081/artifactory/nightlies-local/' + filename + + sh ('echo ARTIFACT Android: ' + apkUrl) + } + + 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) + } + } + } catch (e) { + slackSend color: 'bad', message: 'Release build failed to build. ' + env.BUILD_URL + throw e + } + + stage('Slack Notification') { + def c = (testPassed ? 'good' : 'warning' ) + slackSend color: c, message: 'Release build \nTests: ' + (testPassed ? ':+1:' : ':-1:') + ')\nAndroid: ' + apkUrl + '\n iOS: ' + ipaUrl + } +} \ No newline at end of file