From: Hans-Christoph Steiner Date: Thu, 11 Jan 2018 22:25:31 +0000 (+0100) Subject: build: bump max_apps_per_run to 50 X-Git-Tag: 1.0.1~38 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=56a53055bef857d7cf0f76eb7b485a2f6e85ac2a;p=fdroidserver.git build: bump max_apps_per_run to 50 With this at 10, it seems that there are often runs that produce no builds at all. That's bad. --- diff --git a/fdroidserver/build.py b/fdroidserver/build.py index 464ccf1c..3b990e92 100644 --- a/fdroidserver/build.py +++ b/fdroidserver/build.py @@ -1177,7 +1177,7 @@ def main(): # Build applications... failed_apps = {} build_succeeded = [] - max_apps_per_run = 10 + max_apps_per_run = 50 for appid, app in apps.items(): max_apps_per_run -= 1 if max_apps_per_run < 1: