From ee1d3066d6c33e0ee0042e4cc2e44cb057a1af5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Barth=C3=A9l=C3=A9my=20von=20Haller?= Date: Wed, 25 Sep 2024 15:53:43 +0200 Subject: [PATCH] Don't hard-code the number of parallel builders for mesos (#5642) --- mesos.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesos.sh b/mesos.sh index 256f327114..8a1fd2e305 100644 --- a/mesos.sh +++ b/mesos.sh @@ -42,7 +42,7 @@ cd build --with-rapidjson=${RAPIDJSON_ROOT} # We build with fewer jobs to avoid OOM errors in GCC -make -j 6 +make -j $((JOBS / 2)) make install