1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-07-02 07:20:37 +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...
failed_apps = {}
build_succeeded = []
# Only build for 12 hours, then stop gracefully
endtime = time.time() + 12 * 60 * 60
# Only build for 36 hours, then stop gracefully.
endtime = time.time() + 36 * 60 * 60
max_build_time_reached = False
for appid, app in apps.items():