upload ipa files to DO and Diawi on release too
Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
382eeaa696
commit
47f7dbac9d
|
@ -27,7 +27,7 @@ GEM
|
|||
faraday_middleware (0.13.1)
|
||||
faraday (>= 0.7.4, < 1.0)
|
||||
fastimage (2.1.5)
|
||||
fastlane (2.116.1)
|
||||
fastlane (2.117.1)
|
||||
CFPropertyList (>= 2.3, < 4.0.0)
|
||||
addressable (>= 2.3, < 3.0.0)
|
||||
babosa (>= 1.0.2, < 2.0.0)
|
||||
|
@ -136,7 +136,7 @@ GEM
|
|||
terminal-notifier (1.8.0)
|
||||
terminal-table (1.8.0)
|
||||
unicode-display_width (~> 1.1, >= 1.1.1)
|
||||
tty-cursor (0.6.0)
|
||||
tty-cursor (0.6.1)
|
||||
tty-screen (0.6.5)
|
||||
tty-spinner (0.9.0)
|
||||
tty-cursor (~> 0.6.0)
|
||||
|
@ -144,7 +144,7 @@ GEM
|
|||
unf (0.1.4)
|
||||
unf_ext
|
||||
unf_ext (0.0.7.5)
|
||||
unicode-display_width (1.4.1)
|
||||
unicode-display_width (1.5.0)
|
||||
word_wrap (1.0.0)
|
||||
xcodeproj (1.8.1)
|
||||
CFPropertyList (>= 2.3.3, < 4.0)
|
||||
|
|
|
@ -75,7 +75,6 @@ pipeline {
|
|||
}
|
||||
}
|
||||
stage('Upload') {
|
||||
when { expression { cmn.getBuildType() != 'release' } }
|
||||
steps {
|
||||
script {
|
||||
env.PKG_URL = cmn.uploadArtifact(api)
|
||||
|
|
|
@ -23,6 +23,8 @@ def bundle(type = 'nightly') {
|
|||
}
|
||||
def pkg = cmn.pkgFilename(type, 'apk')
|
||||
sh "cp android/app/build/outputs/apk/release/app-release.apk ${pkg}"
|
||||
/* necessary for Diawi upload */
|
||||
env.DIAWI_APK = pkg
|
||||
return pkg
|
||||
}
|
||||
|
||||
|
|
|
@ -43,6 +43,8 @@ def bundle(type) {
|
|||
pkg = cmn.pkgFilename(type, 'ipa')
|
||||
sh "cp status-adhoc/StatusIm.ipa ${pkg}"
|
||||
}
|
||||
/* necessary for Diawi upload */
|
||||
env.DIAWI_IPA = pkg
|
||||
return pkg
|
||||
}
|
||||
|
||||
|
|
|
@ -210,7 +210,8 @@ platform :ios do
|
|||
desc "---"
|
||||
desc "Output: writes `fastlane/diawi.out` file url of the uploded file"
|
||||
lane :upload_diawi do
|
||||
upload_to_diawi("status-adhoc/StatusIm.ipa")
|
||||
ipa = ENV["DIAWI_IPA"] || "status-adhoc/StatusIm.ipa"
|
||||
upload_to_diawi(ipa)
|
||||
end
|
||||
|
||||
desc "`fastlane ios saucelabs` - upload .app to sauce labs"
|
||||
|
@ -274,7 +275,8 @@ platform :android do
|
|||
desc "---"
|
||||
desc "Output: writes `fastlane/diawi.out` file url of the uploded file"
|
||||
lane :upload_diawi do
|
||||
upload_to_diawi("android/app/build/outputs/apk/release/app-release.apk")
|
||||
apk = ENV["DIAWI_APK"] || "android/app/build/outputs/apk/release/app-release.apk"
|
||||
upload_to_diawi(apk)
|
||||
end
|
||||
|
||||
desc "`fastlane android saucelabs` - upload .apk to sauce labs"
|
||||
|
|
Loading…
Reference in New Issue