From 5591eb6f88d2071d6b648c8dd0f84c899207b101 Mon Sep 17 00:00:00 2001 From: Orange Date: Sun, 19 Jul 2026 17:13:59 +0300 Subject: [PATCH] mingw fix --- .github/workflows/cmake-multi-platform.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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: |