From 56b84251f63f39e99ac22a56d89dff3ecaa7eceb Mon Sep 17 00:00:00 2001 From: relan Date: Sun, 7 Mar 2021 08:37:20 +0300 Subject: [PATCH] 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. --- fdroidserver/build.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fdroidserver/build.py b/fdroidserver/build.py index 36411149..d3051887 100644 --- a/fdroidserver/build.py +++ b/fdroidserver/build.py @@ -1055,8 +1055,8 @@ def main(): build_succeeded = [] status_output['failedBuilds'] = failed_builds status_output['successfulBuilds'] = build_succeeded - # Only build for 36 hours, then stop gracefully. - endtime = time.time() + 36 * 60 * 60 + # Only build for 72 hours, then stop gracefully. + endtime = time.time() + 72 * 60 * 60 max_build_time_reached = False for appid, app in apps.items():