Revert "build: bump max_apps_per_run to 50"

This reverts commit 56a53055be.

Revert "build: limit --all to 10 apps at a time"

This reverts commit afc5cc6b6a.
This commit is contained in:
Marcus Hoffmann 2018-01-15 01:08:23 +01:00
parent 61bb74a369
commit 9a4f3ac019
No known key found for this signature in database
GPG key ID: ACDF63BC43D5E530

View file

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