From 56a53055bef857d7cf0f76eb7b485a2f6e85ac2a Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Thu, 11 Jan 2018 23:25:31 +0100 Subject: [PATCH] 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. --- fdroidserver/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- 2.30.2