mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 06:50:29 +03:00
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:
parent
846a8c68c4
commit
56a53055be
1 changed files with 1 additions and 1 deletions
|
|
@ -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:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue