diff options
author | Michel Dänzer <[email protected]> | 2019-10-22 18:27:53 +0200 |
---|---|---|
committer | Michel Dänzer <[email protected]> | 2019-11-12 10:14:04 +0100 |
commit | 2921a38484b2d390158f6844f1654b787900226e (patch) | |
tree | 6de0696f9fdeaf2136056ccfd750ae55a8d249e8 /.gitlab-ci | |
parent | 0c7e0c5599af71d4a840305394d3b2d926eef934 (diff) |
gitlab-ci: Use ninja -j4 for building dEQP
By default, ninja tries to saturate all cores of the runner host
machine, which could overload it due to other jobs running in parallel.
Reviewed-by: Eric Engestrom <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to '.gitlab-ci')
-rw-r--r-- | .gitlab-ci/debian-install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci/debian-install.sh b/.gitlab-ci/debian-install.sh index b04357903c4..350ceb6181c 100644 --- a/.gitlab-ci/debian-install.sh +++ b/.gitlab-ci/debian-install.sh @@ -269,7 +269,7 @@ cmake -G Ninja \ -DDEQP_TARGET=surfaceless \ -DCMAKE_BUILD_TYPE=Release \ /VK-GL-CTS -ninja +ninja -j4 # Copy out the mustpass lists we want from a bunch of other junk. mkdir /deqp/mustpass |