From fdfb2b80a695554b1aa93f38554e75382b8b6940 Mon Sep 17 00:00:00 2001 From: Remi Gacogne Date: Thu, 24 Apr 2025 10:45:56 +0200 Subject: [PATCH] dnsdist: Limit the number of concurrent build jobs to 4 on CI We are experiencing a lot of build failures on GH actions when building with `meson` and `ASAN+UBSAN`, likely running out of memory. We could try to be smarter and only reduce the concurrency when building with `ASAN+UBSAN`, but for now let's see if it makes the failures go away. --- tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks.py b/tasks.py index ab8a948952..47a6fa5b5f 100644 --- a/tasks.py +++ b/tasks.py @@ -869,7 +869,7 @@ def ci_dnsdist_make(c): c.run(f'make -j{get_build_concurrency(4)} -k V=1') def ci_dnsdist_run_ninja(c): - c.run(f'. {repo_home}/.venv/bin/activate && ninja -j{get_build_concurrency()} --verbose') + c.run(f'. {repo_home}/.venv/bin/activate && ninja -j{get_build_concurrency(4)} --verbose') @task def ci_dnsdist_make_bear(c, builder): -- 2.47.2