This commit is contained in:
Kovid Goyal 2021-12-23 08:11:16 +05:30
parent 70d5a5134f
commit 0a9ba1bc08
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -61,11 +61,11 @@ def run_build(args: Any) -> None:
for x in ('64', '32', 'arm64'):
try:
call(f'python ../bypy linux --arch {x} program', echo=True)
except Exception:
except (SystemExit, Exception):
if x != 'arm64':
raise
print('Linux ARM build failed, retrying in a few seconds...', file=sys.stderr)
time.sleep(5)
time.sleep(15)
call(f'python ../bypy linux --arch {x} program', echo=True)
call(f'python ../bypy linux --arch {x} shutdown', echo=True)
call('python ../bypy macos program --sign-installers --notarize', echo=True)