build: set overall timeout to 72 hours

Some builds are pending for weeks now because of the global time limit.
Give them a chance to be built.
This commit is contained in:
relan 2021-03-07 08:37:20 +03:00
parent fc3906aad3
commit 56b84251f6

View file

@ -1055,8 +1055,8 @@ def main():
build_succeeded = [] build_succeeded = []
status_output['failedBuilds'] = failed_builds status_output['failedBuilds'] = failed_builds
status_output['successfulBuilds'] = build_succeeded status_output['successfulBuilds'] = build_succeeded
# Only build for 36 hours, then stop gracefully. # Only build for 72 hours, then stop gracefully.
endtime = time.time() + 36 * 60 * 60 endtime = time.time() + 72 * 60 * 60
max_build_time_reached = False max_build_time_reached = False
for appid, app in apps.items(): for appid, app in apps.items():