From 68a9383c6fbe45c5c84254a9a41b79c8d40346b9 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Wed, 13 Feb 2019 14:25:45 +0000 Subject: [PATCH] gitlab-ci: limit ninja to 4 threads max I tried bumping the limit on make and scons instead, but that just thrashed the runners, so let's not do that (sorry @daniels :]). Instead, remove the automatic thread management from ninja and limit it to 4 instead, in line with make and scons. Signed-off-by: Eric Engestrom --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f0e16cf1c28..9e1a32f7a0a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -89,7 +89,7 @@ containers:ubuntu: - cd _build - meson configure script: - - ninja + - ninja -j4 - ninja test .make-build: -- 2.30.2