From b86a7d9164af7fb49032387da6bd7e27d503a79d Mon Sep 17 00:00:00 2001 From: Joris Vaillant <joris.vaillant@inria.fr> Date: Wed, 24 Apr 2024 17:32:34 +0200 Subject: [PATCH] =?UTF-8?q?ci:=20Decrease=20parallel=20build=20number=20to?= =?UTF-8?q?=20avoid=20exploding=20CI=C2=A0memory?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/macos-linux-conda.yml | 2 +- .github/workflows/windows-conda.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/macos-linux-conda.yml b/.github/workflows/macos-linux-conda.yml index 9d87ed95..e4821726 100644 --- a/.github/workflows/macos-linux-conda.yml +++ b/.github/workflows/macos-linux-conda.yml @@ -102,7 +102,7 @@ jobs: -DGENERATE_PYTHON_STUBS=ON \ -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \ -DCMAKE_CXX_FLAGS=${{ matrix.cxx_options }} - cmake --build . -j4 + cmake --build . -j3 ctest --output-on-failure cmake --install . diff --git a/.github/workflows/windows-conda.yml b/.github/workflows/windows-conda.yml index 81a4da77..150edd51 100644 --- a/.github/workflows/windows-conda.yml +++ b/.github/workflows/windows-conda.yml @@ -79,7 +79,7 @@ jobs: if errorlevel 1 exit 1 :: Build - cmake --build . -j4 + cmake --build . -j3 if errorlevel 1 exit 1 :: Testing -- GitLab