CI: Don't limit unit test build to -2 cores

This commit is contained in:
2024-04-26 19:27:07 +02:00
parent d81848b0be
commit bf31f41d9a

View File

@@ -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.