chiark / gitweb /
build: bump max_apps_per_run to 50
authorHans-Christoph Steiner <hans@eds.org>
Thu, 11 Jan 2018 22:25:31 +0000 (23:25 +0100)
committerHans-Christoph Steiner <hans@eds.org>
Thu, 11 Jan 2018 22:25:31 +0000 (23:25 +0100)
With this at 10, it seems that there are often runs that produce no builds
at all.  That's bad.

fdroidserver/build.py

index 464ccf1cd51c611132a08f2299b913be59f61fec..3b990e92a44a4a2fa02b76fa6017425f35993601 100644 (file)
@@ -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: