From 33a2e5bf5e0e881d2e98a77e88652224eeb17527 Mon Sep 17 00:00:00 2001 From: Stepan Usatiuk Date: Fri, 5 Jan 2024 22:39:56 +0100 Subject: [PATCH] use 2 less cores for ci my poor sbc can't keep up --- .github/workflows/cmake.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index adb8ccd..1821b97 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -34,7 +34,7 @@ jobs: - name: Build # Build your program with the given configuration - run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --parallel $(nproc) + run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --parallel $(( $(nproc) - 2 )) - name: Test # Execute tests defined by the CMake configuration.