From: Otto Moerbeek Date: Fri, 6 Dec 2024 15:13:46 +0000 (+0100) Subject: Change back to default concurrency X-Git-Tag: dnsdist-2.0.0-alpha1~194^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c06e8c4b78a45a85643010c1a83d7593d3f9f6eb;p=thirdparty%2Fpdns.git Change back to default concurrency --- diff --git a/tasks.py b/tasks.py index b2423e39a1..68817b38d6 100644 --- 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):