From bf31f41d9aa961e3f300039f7a6891c7d6b93c1b Mon Sep 17 00:00:00 2001 From: Stepan Usatiuk Date: Fri, 26 Apr 2024 19:27:07 +0200 Subject: [PATCH] CI: Don't limit unit test build to -2 cores --- .github/workflows/unit.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/unit.yml b/.github/workflows/unit.yml index 0ff235715..b92e6e75c 100644 --- a/.github/workflows/unit.yml +++ b/.github/workflows/unit.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) - 2 )) + run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --parallel $(nproc) - name: Test # Execute tests defined by the CMake configuration.