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 <eric.engestrom@intel.com>
This commit is contained in:
Eric Engestrom 2019-02-13 14:25:45 +00:00
parent fccc9d3de6
commit 68a9383c6f
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ containers:ubuntu:
- cd _build
- meson configure
script:
- ninja
- ninja -j4
- ninja test
.make-build: