diff --git a/.github/workflows/cmake-multi-platform.yml b/.github/workflows/cmake-multi-platform.yml index 472511a..79159c7 100644 --- a/.github/workflows/cmake-multi-platform.yml +++ b/.github/workflows/cmake-multi-platform.yml @@ -707,7 +707,11 @@ jobs: - name: Build run: | - cmake --build cmake-build/build/${{ matrix.preset }} --target unit_tests omath + if [[ "${{ matrix.msystem }}" == "MINGW32" ]]; then + cmake --build cmake-build/build/${{ matrix.preset }} --target unit_tests omath --parallel 1 + else + cmake --build cmake-build/build/${{ matrix.preset }} --target unit_tests omath + fi - name: Run unit_tests.exe run: |