From 2e829c13490b61723605504bdd1e855d3f31851b Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 29 Jul 2024 07:19:10 +0530 Subject: [PATCH] Sleep longer before retrying to give VM more time to startup --- publish.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/publish.py b/publish.py index eabf4a07e..8653b4e24 100755 --- a/publish.py +++ b/publish.py @@ -78,10 +78,10 @@ def run_with_retry(cmd: str) -> None: needs_retry = 'arm64' in cmd or building_nightly if not needs_retry: raise - print('Build failed, retrying in a few seconds...', file=sys.stderr) + print('Build failed, retrying in a minute seconds...', file=sys.stderr) if 'macos' in cmd: call('python ../bypy macos shutdown') - time.sleep(25) + time.sleep(60) call(cmd, echo=True) for x in ('64', 'arm64'):