From: Eric Engestrom Date: Wed, 13 Feb 2019 14:25:45 +0000 (+0000) Subject: gitlab-ci: limit ninja to 4 threads max X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=68a9383c6fbe45c5c84254a9a41b79c8d40346b9;p=mesa.git 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 --- 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: