From 39dfb92e330b7823ea3a4530967a9163a3be99cb Mon Sep 17 00:00:00 2001 From: Paul Gessinger Date: Tue, 1 Oct 2024 22:24:23 +0200 Subject: [PATCH] ci: GitLab `-j6` (#3677) Tune down number of jobs in GitLab back to 6. I suspect our current heaviest hitter, the GX2F test, is causing OOMs in some cases. Until that's fixed, we need to reduce the core count again. --- .gitlab-ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 83d2ae41c57..2e6b5f42fa9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -81,7 +81,7 @@ build_exatrkx_cpu: -DACTS_EXATRKX_ENABLE_CUDA=OFF - ccache -z - - cmake --build build -- -j8 + - cmake --build build -- -j6 - ccache -s build_exatrkx: @@ -119,7 +119,7 @@ build_exatrkx: -DCMAKE_CUDA_ARCHITECTURES="75;86" - ccache -z - - cmake --build build -- -j8 + - cmake --build build -- -j6 - ccache -s # test_exatrkx_unittests: @@ -186,7 +186,7 @@ build_linux_ubuntu: -DACTS_BUILD_PLUGIN_ONNX=ON - ccache -z - - cmake --build build -- -j8 + - cmake --build build -- -j6 - ccache -s linux_test_examples: @@ -271,7 +271,7 @@ linux_physmon: -DCMAKE_CXX_STANDARD=${CXXSTD} - ccache -z - - cmake --build build -- -j8 + - cmake --build build -- -j6 - ccache -s - ctest --test-dir build -j$(nproc) @@ -367,7 +367,7 @@ linux_ubuntu_2204_clang: -DACTS_BUILD_PLUGIN_GEOMODEL=OFF # GeoModel is not in LCG at this point - ccache -z - - cmake --build build -- -j8 + - cmake --build build -- -j6 - ccache -s - ctest --test-dir build -j$(nproc)