mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 00:15:32 +00:00
maint(ios): skip unnecessary network steps when buildLevel is build
Skips codesigning and upload to TestFlight in this case. Fixes: #14286
This commit is contained in:
parent
e6aa384e07
commit
bfd9fe85bd
2 changed files with 3 additions and 3 deletions
|
|
@ -50,7 +50,7 @@ XCODEFLAGS="-quiet -configuration $CONFIG"
|
|||
XCODEFLAGS_EXT="$XCODEFLAGS -derivedDataPath \"$DERIVED_DATA\" -workspace ../keymanios.xcworkspace"
|
||||
|
||||
CODE_SIGN=
|
||||
if builder_is_debug_build; then
|
||||
if builder_is_debug_build || ( builder_is_ci_build && ! builder_is_ci_build_level_release ); then
|
||||
CODE_SIGN="CODE_SIGN_IDENTITY= CODE_SIGNING_REQUIRED=NO ${DEV_TEAM:-} CODE_SIGN_ENTITLEMENTS= CODE_SIGNING_ALLOWED=NO"
|
||||
fi
|
||||
|
||||
|
|
|
|||
|
|
@ -103,8 +103,8 @@ function _upload_to_testflight_pr_area_fv() {
|
|||
function do_build() {
|
||||
ios_build
|
||||
ios_capture_build_artifacts
|
||||
_upload_to_testflight_pr_area
|
||||
_upload_to_testflight_pr_area_fv
|
||||
builder_if_release_build_level _upload_to_testflight_pr_area
|
||||
builder_if_release_build_level _upload_to_testflight_pr_area_fv
|
||||
}
|
||||
|
||||
ba_mac_unlock_keychain
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue