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.
This commit is contained in:
Hans-Christoph Steiner 2018-01-11 23:25:31 +01:00
parent 846a8c68c4
commit 56a53055be

View file

@ -1177,7 +1177,7 @@ def main():
# Build applications... # Build applications...
failed_apps = {} failed_apps = {}
build_succeeded = [] build_succeeded = []
max_apps_per_run = 10 max_apps_per_run = 50
for appid, app in apps.items(): for appid, app in apps.items():
max_apps_per_run -= 1 max_apps_per_run -= 1
if max_apps_per_run < 1: if max_apps_per_run < 1: