]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Change back to default concurrency
authorOtto Moerbeek <otto.moerbeek@open-xchange.com>
Fri, 6 Dec 2024 15:13:46 +0000 (16:13 +0100)
committerOtto Moerbeek <otto.moerbeek@open-xchange.com>
Fri, 6 Dec 2024 15:13:46 +0000 (16:13 +0100)
tasks.py

index b2423e39a180863183ca9a5c0694232b50ec820b..68817b38d69e084178bc518cff3c3e5ed50a2f60 100644 (file)
--- a/tasks.py
+++ b/tasks.py
@@ -725,7 +725,7 @@ def ci_auth_make_bear(c):
     c.run(f'bear --append -- make -j{get_build_concurrency()} -k V=1')
 
 def run_ninja(c):
-    c.run(f'. {repo_home}/.venv/bin/activate && ninja -j{get_build_concurrency(4)} --verbose')
+    c.run(f'. {repo_home}/.venv/bin/activate && ninja -j{get_build_concurrency()} --verbose')
 
 @task
 def ci_auth_build(c, meson=False):
@@ -737,7 +737,7 @@ def ci_auth_build(c, meson=False):
 @task
 def ci_rec_make_bear(c):
     # Assumed to be running under ./pdns/recursordist/
-    c.run(f'bear --append -- make -j{get_build_concurrency(4)} -k V=1')
+    c.run(f'bear --append -- make -j{get_build_concurrency()} -k V=1')
 
 @task
 def ci_rec_build(c, meson=False):