move archive.plist settings to the repo
Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
95a686e4c3
commit
4d1900516f
|
@ -80,8 +80,9 @@ timeout(90) {
|
||||||
|
|
||||||
// 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'
|
env.RCT_NO_LAUNCH_PACKAGER = true
|
||||||
sh 'xcodebuild -exportArchive -exportPath status -archivePath status.xcarchive -exportOptionsPlist ~/archive.plist'
|
sh 'xcodebuild -workspace ios/StatusIm.xcworkspace -scheme StatusIm -configuration release -archivePath status clean archive'
|
||||||
|
sh 'xcodebuild -exportArchive -exportPath status -archivePath status.xcarchive -exportOptionsPlist ios/archive-develop.plist'
|
||||||
}
|
}
|
||||||
|
|
||||||
stage('Deploy (iOS)') {
|
stage('Deploy (iOS)') {
|
||||||
|
|
|
@ -56,8 +56,9 @@ timeout(90) {
|
||||||
}
|
}
|
||||||
|
|
||||||
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'
|
env.RCT_NO_LAUNCH_PACKAGER = true
|
||||||
sh 'xcodebuild -exportArchive -exportPath status -archivePath status.xcarchive -exportOptionsPlist ~/archive.plist'
|
sh 'xcodebuild -workspace ios/StatusIm.xcworkspace -scheme StatusIm -configuration release -archivePath status clean archive'
|
||||||
|
sh 'xcodebuild -exportArchive -exportPath status -archivePath status.xcarchive -exportOptionsPlist ios/archive-develop.plist'
|
||||||
}
|
}
|
||||||
|
|
||||||
stage('Deploy (Android)') {
|
stage('Deploy (Android)') {
|
||||||
|
|
|
@ -74,13 +74,16 @@ timeout(90) {
|
||||||
}
|
}
|
||||||
|
|
||||||
stage('Build (iOS)') {
|
stage('Build (iOS)') {
|
||||||
withCredentials([string(credentialsId: 'jenkins_pass', variable: 'password')]) {
|
withCredentials([
|
||||||
sh ('plutil -replace CFBundleShortVersionString -string ' + version + ' ios/StatusIm/Info.plist')
|
string(credentialsId: 'jenkins_pass', variable: 'password')
|
||||||
sh ('plutil -replace CFBundleVersion -string ' + build_no + ' ios/StatusIm/Info.plist')
|
]) {
|
||||||
sh 'export RCT_NO_LAUNCH_PACKAGER=true && xcodebuild -workspace ios/StatusIm.xcworkspace -scheme StatusIm -configuration release -archivePath status clean archive'
|
sh "plutil -replace CFBundleShortVersionString -string ${version} ios/StatusIm/Info.plist"
|
||||||
sh ('security unlock-keychain -p ' + password + ' login.keychain')
|
sh "plutil -replace CFBundleVersion -string ${build_no} ios/StatusIm/Info.plist"
|
||||||
sh 'xcodebuild -exportArchive -exportPath status_appstore -archivePath status.xcarchive -exportOptionsPlist ~/archive-release.plist'
|
env.RCT_NO_LAUNCH_PACKAGER = true
|
||||||
sh 'xcodebuild -exportArchive -exportPath status -archivePath status.xcarchive -exportOptionsPlist ~/archive.plist'
|
sh 'xcodebuild -workspace ios/StatusIm.xcworkspace -scheme StatusIm -configuration release -archivePath status clean archive'
|
||||||
|
sh "security unlock-keychain -p ${password} login.keychain"
|
||||||
|
sh 'xcodebuild -exportArchive -exportPath status_appstore -archivePath status.xcarchive -exportOptionsPlist ios/archive-release.plist'
|
||||||
|
sh 'xcodebuild -exportArchive -exportPath status -archivePath status.xcarchive -exportOptionsPlist ios/archive.plist'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,124 +4,124 @@ env.LC_ALL="en_US.UTF-8"
|
||||||
env.FASTLANE_DISABLE_COLORS=1
|
env.FASTLANE_DISABLE_COLORS=1
|
||||||
|
|
||||||
def installJSDeps() {
|
def installJSDeps() {
|
||||||
def attempt = 1
|
def attempt = 1
|
||||||
def maxAttempts = 10
|
def maxAttempts = 10
|
||||||
def installed = false
|
def installed = false
|
||||||
while (!installed && attempt <= maxAttempts) {
|
while (!installed && attempt <= maxAttempts) {
|
||||||
println "#${attempt} attempt to install npm deps"
|
println "#${attempt} attempt to install npm deps"
|
||||||
sh 'scripts/prepare-for-platform.sh mobile'
|
sh 'scripts/prepare-for-platform.sh mobile'
|
||||||
sh 'npm install'
|
sh 'npm install'
|
||||||
installed = fileExists('node_modules/web3/index.js')
|
installed = fileExists('node_modules/web3/index.js')
|
||||||
attemp = attempt + 1
|
attemp = attempt + 1
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
timeout(90) {
|
timeout(90) {
|
||||||
node ('macos') {
|
node ('macos') {
|
||||||
def apkUrl = ''
|
def apkUrl = ''
|
||||||
def ipaUrl = ''
|
def ipaUrl = ''
|
||||||
def testPassed = true
|
def testPassed = true
|
||||||
def branch;
|
def branch;
|
||||||
|
|
||||||
load "$HOME/env.groovy"
|
load "$HOME/env.groovy"
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
stage('Git & Dependencies') {
|
||||||
|
slackSend color: 'good', message: REPO + ":" + BRANCH_NAME + ' build started. ' + env.BUILD_URL
|
||||||
|
|
||||||
stage('Git & Dependencies') {
|
checkout scm
|
||||||
slackSend color: 'good', message: REPO + ":" + BRANCH_NAME + ' build started. ' + env.BUILD_URL
|
|
||||||
|
|
||||||
checkout scm
|
sh 'rm -rf node_modules'
|
||||||
|
|
||||||
sh 'rm -rf node_modules'
|
sh 'test ${JENKINS_REBASE_DEVELOP} -eq 1 && git rebase origin/develop || echo "Not rebasing on develop."'
|
||||||
|
|
||||||
sh 'test ${JENKINS_REBASE_DEVELOP} -eq 1 && git rebase origin/develop || echo "Not rebasing on develop."'
|
// Assume all parameters are set in Jenkins 'Parameterized build'
|
||||||
|
// TODO(oskarth): Consider read/write from .env to avoid having to specify in Jenkins again
|
||||||
|
// sh 'cp .env.jenkins .env'
|
||||||
|
sh 'echo TESTFAIRY_ENABLED=' + TESTFAIRY_ENABLED + '>>' + '.env'
|
||||||
|
sh 'echo ETHEREUM_DEV_CLUSTER=' + ETHEREUM_DEV_CLUSTER + '>>' + '.env'
|
||||||
|
sh 'echo MAINNET_NETWORKS_ENABLED=' + MAINNET_NETWORKS_ENABLED + '>>' + '.env'
|
||||||
|
sh 'echo LOG_LEVEL=' + LOG_LEVEL + '>>' + '.env'
|
||||||
|
sh 'echo LOG_LEVEL_STATUS_GO=' + LOG_LEVEL_STATUS_GO + '>>' + '.env'
|
||||||
|
sh 'echo OFFLINE_INBOX_ENABLED=' + OFFLINE_INBOX_ENABLED + '>>' + '.env'
|
||||||
|
sh 'echo POW_TARGET=' + POW_TARGET + '>>' + '.env'
|
||||||
|
sh 'echo POW_TIME=' + POW_TIME + '>>' + '.env'
|
||||||
|
sh 'echo MAINNET_WARNING_ENABLED=' + MAINNET_WARNING_ENABLED + '>>' + '.env'
|
||||||
|
sh 'echo DEFAULT_NETWORK=' + DEFAULT_NETWORK + '>>' + '.env'
|
||||||
|
|
||||||
// Assume all parameters are set in Jenkins 'Parameterized build'
|
sh 'echo "**********************************************************************"'
|
||||||
// TODO(oskarth): Consider read/write from .env to avoid having to specify in Jenkins again
|
sh 'echo PARAMETERIZED BUILD - USING CUSTOM ENVIRONMENT'
|
||||||
// sh 'cp .env.jenkins .env'
|
sh 'cat .env'
|
||||||
sh 'echo TESTFAIRY_ENABLED=' + TESTFAIRY_ENABLED + '>>' + '.env'
|
sh 'echo "**********************************************************************"'
|
||||||
sh 'echo ETHEREUM_DEV_CLUSTER=' + ETHEREUM_DEV_CLUSTER + '>>' + '.env'
|
|
||||||
sh 'echo MAINNET_NETWORKS_ENABLED=' + MAINNET_NETWORKS_ENABLED + '>>' + '.env'
|
|
||||||
sh 'echo LOG_LEVEL=' + LOG_LEVEL + '>>' + '.env'
|
|
||||||
sh 'echo LOG_LEVEL_STATUS_GO=' + LOG_LEVEL_STATUS_GO + '>>' + '.env'
|
|
||||||
sh 'echo OFFLINE_INBOX_ENABLED=' + OFFLINE_INBOX_ENABLED + '>>' + '.env'
|
|
||||||
sh 'echo POW_TARGET=' + POW_TARGET + '>>' + '.env'
|
|
||||||
sh 'echo POW_TIME=' + POW_TIME + '>>' + '.env'
|
|
||||||
sh 'echo MAINNET_WARNING_ENABLED=' + MAINNET_WARNING_ENABLED + '>>' + '.env'
|
|
||||||
sh 'echo DEFAULT_NETWORK=' + DEFAULT_NETWORK + '>>' + '.env'
|
|
||||||
|
|
||||||
sh 'echo "**********************************************************************"'
|
installJSDeps()
|
||||||
sh 'echo PARAMETERIZED BUILD - USING CUSTOM ENVIRONMENT'
|
|
||||||
sh 'cat .env'
|
|
||||||
sh 'echo "**********************************************************************"'
|
|
||||||
|
|
||||||
installJSDeps()
|
sh 'mvn -f modules/react-native-status/ios/RCTStatus dependency:unpack'
|
||||||
|
sh 'cd ios && pod install && cd ..'
|
||||||
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'
|
|
||||||
}
|
|
||||||
|
|
||||||
// Android
|
|
||||||
stage('Build (Android)') {
|
|
||||||
sh 'cd android && ./gradlew react-native-android:installArchives && ./gradlew assembleRelease'
|
|
||||||
}
|
|
||||||
stage('Deploy (Android)') {
|
|
||||||
withCredentials([string(credentialsId: 'diawi-token', variable: 'token')]) {
|
|
||||||
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)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// try {
|
|
||||||
// stage('Test (Android)') {
|
|
||||||
// sauce('b9aded57-5cc1-4f6b-b5ea-42d989987852') {
|
|
||||||
// sh 'cd test/appium && mvn -DapkUrl=' + apkUrl + ' test'
|
|
||||||
// saucePublisher()
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// } catch(e) {
|
|
||||||
// testPassed = false
|
|
||||||
// }
|
|
||||||
|
|
||||||
// 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'
|
|
||||||
}
|
|
||||||
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: ' + REPO + ":" + BRANCH_NAME +
|
|
||||||
'\nAndroid: ' + apkUrl +
|
|
||||||
'\niOS: ' + ipaUrl
|
|
||||||
}
|
|
||||||
|
|
||||||
} catch (e) {
|
|
||||||
slackSend color: 'bad', message: REPO + ":" + BRANCH_NAME + ' failed to build. ' + env.BUILD_URL
|
|
||||||
throw e
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
stage('Tests') {
|
||||||
|
sh 'lein test-cljs'
|
||||||
|
}
|
||||||
|
|
||||||
|
stage('Build') {
|
||||||
|
sh 'lein prod-build'
|
||||||
|
}
|
||||||
|
|
||||||
|
// Android
|
||||||
|
stage('Build (Android)') {
|
||||||
|
sh 'cd android && ./gradlew react-native-android:installArchives && ./gradlew assembleRelease'
|
||||||
|
}
|
||||||
|
stage('Deploy (Android)') {
|
||||||
|
withCredentials([string(credentialsId: 'diawi-token', variable: 'token')]) {
|
||||||
|
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)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// try {
|
||||||
|
// stage('Test (Android)') {
|
||||||
|
// sauce('b9aded57-5cc1-4f6b-b5ea-42d989987852') {
|
||||||
|
// sh 'cd test/appium && mvn -DapkUrl=' + apkUrl + ' test'
|
||||||
|
// saucePublisher()
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// } catch(e) {
|
||||||
|
// testPassed = false
|
||||||
|
// }
|
||||||
|
|
||||||
|
// iOS
|
||||||
|
stage('Build (iOS)') {
|
||||||
|
env.RCT_NO_LAUNCH_PACKAGER = true
|
||||||
|
sh 'xcodebuild -workspace ios/StatusIm.xcworkspace -scheme StatusIm -configuration release -archivePath status clean archive'
|
||||||
|
sh 'xcodebuild -exportArchive -exportPath status -archivePath status.xcarchive -exportOptionsPlist ios/archive-develop.plist'
|
||||||
|
}
|
||||||
|
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: ${REPO}:${BRANCH_NAME}\nAndroid: ${apkUrl}\niOS: ${ipaUrl}"
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
} catch (e) {
|
||||||
|
slackSend color: 'bad', message: REPO + ":" + BRANCH_NAME + ' failed to build. ' + env.BUILD_URL
|
||||||
|
throw e
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -75,10 +75,11 @@ timeout(90) {
|
||||||
}
|
}
|
||||||
|
|
||||||
stage('Build (iOS)') {
|
stage('Build (iOS)') {
|
||||||
sh ('plutil -replace CFBundleShortVersionString -string ' + version + ' ios/StatusIm/Info.plist')
|
sh "plutil -replace CFBundleShortVersionString -string ${version} ios/StatusIm/Info.plist"
|
||||||
sh ('plutil -replace CFBundleVersion -string ' + build_no + ' ios/StatusIm/Info.plist')
|
sh "plutil -replace CFBundleVersion -string ${build_no} ios/StatusIm/Info.plist"
|
||||||
sh 'export RCT_NO_LAUNCH_PACKAGER=true && xcodebuild -workspace ios/StatusIm.xcworkspace -scheme StatusIm -configuration release -archivePath status clean archive'
|
env.RCT_NO_LAUNCH_PACKAGER = true
|
||||||
sh 'xcodebuild -exportArchive -exportPath status -archivePath status.xcarchive -exportOptionsPlist ~/archive.plist'
|
sh 'xcodebuild -workspace ios/StatusIm.xcworkspace -scheme StatusIm -configuration release -archivePath status clean archive'
|
||||||
|
sh 'xcodebuild -exportArchive -exportPath status -archivePath status.xcarchive -exportOptionsPlist ios/archive-develop.plist'
|
||||||
}
|
}
|
||||||
|
|
||||||
stage('Deploy (Android)') {
|
stage('Deploy (Android)') {
|
||||||
|
|
|
@ -75,11 +75,12 @@ timeout(90) {
|
||||||
|
|
||||||
stage('Build (iOS)') {
|
stage('Build (iOS)') {
|
||||||
withCredentials([string(credentialsId: 'jenkins_pass', variable: 'password')]) {
|
withCredentials([string(credentialsId: 'jenkins_pass', variable: 'password')]) {
|
||||||
sh ('plutil -replace CFBundleShortVersionString -string ' + version + ' ios/StatusIm/Info.plist')
|
sh "plutil -replace CFBundleShortVersionString -string ${version} ios/StatusIm/Info.plist"
|
||||||
sh ('plutil -replace CFBundleVersion -string ' + build_no + ' ios/StatusIm/Info.plist')
|
sh "plutil -replace CFBundleVersion -string ${build_no} ios/StatusIm/Info.plist"
|
||||||
sh 'export RCT_NO_LAUNCH_PACKAGER=true && xcodebuild -workspace ios/StatusIm.xcworkspace -scheme StatusIm -configuration release -archivePath status clean archive'
|
env.RCT_NO_LAUNCH_PACKAGER = true
|
||||||
sh ('security unlock-keychain -p ' + password + ' login.keychain')
|
sh 'xcodebuild -workspace ios/StatusIm.xcworkspace -scheme StatusIm -configuration release -archivePath status clean archive'
|
||||||
sh 'xcodebuild -exportArchive -exportPath status_appstore -archivePath status.xcarchive -exportOptionsPlist ~/archive-release.plist'
|
sh "security unlock-keychain -p ${password} login.keychain"
|
||||||
|
sh 'xcodebuild -exportArchive -exportPath status_appstore -archivePath status.xcarchive -exportOptionsPlist ios/archive-release.plist'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
|
<plist version="1.0">
|
||||||
|
<dict>
|
||||||
|
<key>teamID</key>
|
||||||
|
<string>DTX7Z4U3YA</string>
|
||||||
|
<key>method</key>
|
||||||
|
<string>development</string>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
|
@ -0,0 +1,16 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
|
<plist version="1.0">
|
||||||
|
<dict>
|
||||||
|
<key>teamID</key>
|
||||||
|
<string>DTX7Z4U3YA</string>
|
||||||
|
<key>method</key>
|
||||||
|
<string>app-store</string>
|
||||||
|
<key>uploadBitcode</key>
|
||||||
|
<false/>
|
||||||
|
<key>compileBitcode</key>
|
||||||
|
<true/>
|
||||||
|
<key>ITSAppUsesNonExemptEncryption</key>
|
||||||
|
<false/>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
Loading…
Reference in New Issue