mirror of
https://github.com/status-im/status-mobile.git
synced 2025-02-24 06:18:13 +00:00
upload release to iTC/PM
This commit is contained in:
parent
e9af024e0d
commit
74281a742f
@ -60,7 +60,7 @@ node ('macos1'){
|
|||||||
withCredentials([string(credentialsId: 'jenkins_pass', variable: 'password')]) {
|
withCredentials([string(credentialsId: 'jenkins_pass', variable: 'password')]) {
|
||||||
sh ('git tag -d ' + latest_tag + ' || exit 0')
|
sh ('git tag -d ' + latest_tag + ' || exit 0')
|
||||||
sh ('git tag ' + latest_tag)
|
sh ('git tag ' + latest_tag)
|
||||||
def build_no = sh(returnStdout: true, script: 'git rev-list --count 0.9.15').trim()
|
def build_no = sh(returnStdout: true, script: 'git rev-list --count HEAD').trim()
|
||||||
sh ('plutil -replace CFBundleShortVersionString -string ' + latest_tag + ' ios/StatusIm/Info.plist')
|
sh ('plutil -replace CFBundleShortVersionString -string ' + latest_tag + ' 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'
|
sh 'export RCT_NO_LAUNCH_PACKAGER=true && xcodebuild -workspace ios/StatusIm.xcworkspace -scheme StatusIm -configuration release -archivePath status clean archive'
|
||||||
|
92
Jenkinsfile.upload_release
Normal file
92
Jenkinsfile.upload_release
Normal file
@ -0,0 +1,92 @@
|
|||||||
|
// 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')
|
||||||
|
attemp = attempt + 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
node ('macos1'){
|
||||||
|
def apkUrl = ''
|
||||||
|
def ipaUrl = ''
|
||||||
|
def testPassed = true
|
||||||
|
def version
|
||||||
|
|
||||||
|
load "$HOME/env.groovy"
|
||||||
|
|
||||||
|
try {
|
||||||
|
|
||||||
|
stage('Git & Dependencies') {
|
||||||
|
slackSend color: 'good', message: BRANCH_NAME + ' build started. ' + env.BUILD_URL
|
||||||
|
|
||||||
|
if (!BRANCH_NAME.startsWith("release/")){
|
||||||
|
error "Wrong branch name format: " + BRANCH_NAME + ", but it should be `release/version`"
|
||||||
|
}
|
||||||
|
|
||||||
|
version = BRANCH_NAME.substring(8)
|
||||||
|
|
||||||
|
println version
|
||||||
|
|
||||||
|
checkout scm
|
||||||
|
|
||||||
|
sh 'git fetch --tags'
|
||||||
|
|
||||||
|
sh 'rm -rf node_modules'
|
||||||
|
sh 'cp .env.prod .env'
|
||||||
|
sh 'lein deps'
|
||||||
|
installJSDeps()
|
||||||
|
|
||||||
|
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 -PreleaseVersion=' + version
|
||||||
|
}
|
||||||
|
|
||||||
|
stage('Build (iOS)') {
|
||||||
|
withCredentials([string(credentialsId: 'jenkins_pass', variable: 'password')]) {
|
||||||
|
def build_no = sh(returnStdout: true, script: 'git rev-list --count HEAD').trim()
|
||||||
|
sh ('plutil -replace CFBundleShortVersionString -string ' + version + ' 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'
|
||||||
|
sh ('security unlock-keychain -p ' + password + ' login.keychain')
|
||||||
|
sh 'xcodebuild -exportArchive -exportPath status_appstore -archivePath status.xcarchive -exportOptionsPlist ~/archive-release.plist'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
stage('Deploy (Android)') {
|
||||||
|
sh ('bundle exec fastlane android release || exit 0')
|
||||||
|
}
|
||||||
|
|
||||||
|
stage('Deploy (iOS)') {
|
||||||
|
sh ('bundle exec fastlane ios release || exit 0')
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
slackSend color: 'bad', message: 'Release build failed uploading to iTC/Play Market. ' + env.BUILD_URL
|
||||||
|
throw e
|
||||||
|
}
|
||||||
|
|
||||||
|
stage('Slack Notification') {
|
||||||
|
slackSend color: 'good', message: 'Release build ' + version + ' succesfully aploade to iTC/Play Market'
|
||||||
|
}
|
||||||
|
}
|
@ -107,6 +107,10 @@ def getVersionCode = { ->
|
|||||||
|
|
||||||
def getVersionName = { ->
|
def getVersionName = { ->
|
||||||
new ByteArrayOutputStream().withStream { stdOut ->
|
new ByteArrayOutputStream().withStream { stdOut ->
|
||||||
|
if (project.hasProperty("releaseVersion")) {
|
||||||
|
return project.releaseVersion
|
||||||
|
}
|
||||||
|
|
||||||
exec {
|
exec {
|
||||||
commandLine "git", "describe", "--tags", "--always", "--dirty=+"
|
commandLine "git", "describe", "--tags", "--always", "--dirty=+"
|
||||||
standardOutput = stdOut
|
standardOutput = stdOut
|
||||||
|
@ -18,6 +18,12 @@ platform :ios do
|
|||||||
)
|
)
|
||||||
slack(message: "New nightly build uploaded to iTunes Connect")
|
slack(message: "New nightly build uploaded to iTunes Connect")
|
||||||
end
|
end
|
||||||
|
lane :release do
|
||||||
|
upload_to_testflight(
|
||||||
|
ipa: "status_appstore/StatusIm.ipa"
|
||||||
|
)
|
||||||
|
slack(message: "New release build uploaded to iTunes Connect")
|
||||||
|
end
|
||||||
desc "Remove inactive TestFlight users"
|
desc "Remove inactive TestFlight users"
|
||||||
lane :clean do
|
lane :clean do
|
||||||
clean_testflight_testers
|
clean_testflight_testers
|
||||||
@ -34,4 +40,11 @@ platform :android do
|
|||||||
)
|
)
|
||||||
slack(message: "New nightly build uploaded to Google Play")
|
slack(message: "New nightly build uploaded to Google Play")
|
||||||
end
|
end
|
||||||
|
lane :release do
|
||||||
|
upload_to_play_store(
|
||||||
|
track: "alpha",
|
||||||
|
apk: "android/app/build/outputs/apk/release/app-release.apk"
|
||||||
|
)
|
||||||
|
slack(message: "New release build uploaded to Google Play")
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user