1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-07-04 16:30:12 +02:00

build: set overall timeout to 36 hours

Currently f-droid.org has a lot of pending builds and big delays
between "fdroid build --all" runs. Bump overall build time limit from
12 hours to 36 hours to increase buildserver throughput.
This commit is contained in:
relan 2018-02-12 13:45:49 +03:00
parent bc5bf7e0ec
commit c0f323e343

View File

@ -1082,8 +1082,8 @@ def main():
# Build applications... # Build applications...
failed_apps = {} failed_apps = {}
build_succeeded = [] build_succeeded = []
# Only build for 12 hours, then stop gracefully # Only build for 36 hours, then stop gracefully.
endtime = time.time() + 12 * 60 * 60 endtime = time.time() + 36 * 60 * 60
max_build_time_reached = False max_build_time_reached = False
for appid, app in apps.items(): for appid, app in apps.items():