Try again

This commit is contained in:
Ali 2019-11-20 23:45:26 +04:00
parent f47363dd7e
commit 82311c5234
3 changed files with 14 additions and 12 deletions

View File

@ -53,18 +53,18 @@ beta_testflight:
# environment: # environment:
# name: testflight_llc # name: testflight_llc
verifysanity_beta_testflight: #verifysanity_beta_testflight:
tags: # tags:
- ios_beta # - ios_beta
stage: verifysanity # stage: verifysanity
only: # only:
- beta # - beta
except: # except:
- tags # - tags
script: # script:
- bash buildbox/verify-telegram.sh appstore cached # - bash buildbox/verify-telegram.sh appstore cached
environment: # environment:
name: testflight_llc # name: testflight_llc
verify_beta_testflight: verify_beta_testflight:
tags: tags:

View File

@ -62,6 +62,7 @@ if [ "$BUILD_CONFIGURATION" == "hockeyapp" ]; then
elif [ "$BUILD_CONFIGURATION" == "appstore" ]; then elif [ "$BUILD_CONFIGURATION" == "appstore" ]; then
CODESIGNING_SUBPATH="transient-data/codesigning" CODESIGNING_SUBPATH="transient-data/codesigning"
CODESIGNING_TEAMS_SUBPATH="transient-data/teams" CODESIGNING_TEAMS_SUBPATH="transient-data/teams"
export BUCK_HTTP_CACHE=""
elif [ "$BUILD_CONFIGURATION" == "verify" ]; then elif [ "$BUILD_CONFIGURATION" == "verify" ]; then
CODESIGNING_SUBPATH="fake-codesigning" CODESIGNING_SUBPATH="fake-codesigning"
else else

View File

@ -285,6 +285,7 @@ def ipadiff(self_base_path, ipa1, ipa2):
print('Different files in ' + ipa1 + ' and ' + ipa2) print('Different files in ' + ipa1 + ' and ' + ipa2)
for relative_file_path in different_files: for relative_file_path in different_files:
print(' ' + relative_file_path) print(' ' + relative_file_path)
sys.exit(1)
else: else:
if len(encrypted_files) != 0 or len(watch_ipa1_files) != 0 or len(plugin_ipa1_files) != 0: if len(encrypted_files) != 0 or len(watch_ipa1_files) != 0 or len(plugin_ipa1_files) != 0:
print('IPAs are equal, except for the files that can\'t currently be checked:') print('IPAs are equal, except for the files that can\'t currently be checked:')