From 945a82e5f6c8edd6c622c318654c09bb55869629 Mon Sep 17 00:00:00 2001 From: Quinn Date: Wed, 17 Sep 2025 11:24:53 +0200 Subject: [PATCH] test-fix: windows compilation --- .github/workflows/ci.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index a08cf93..b8bcac5 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -11,8 +11,8 @@ jobs: os: - ubuntu-latest - ubuntu-24.04-arm - # - windows-latest - # - windows-11-arm + - windows-latest + - windows-11-arm - macos-latest runs-on: ${{matrix.os}} steps: @@ -41,7 +41,9 @@ jobs: restore-keys: ${{runner.os}}_${{runner.arch}}-lib/obj- - run: make -Bj libs - if: steps.cache-deps.outputs.cache-hit != 'true' + if: steps.cache-deps.outputs.cache-hit != 'true' && runner.os != 'Windows' + - run: make -Bj1 libs # compile in single-core mode, to save memory, hopefully + if: steps.cache-deps.outputs.cache-hit != 'true' && runner.os == 'Windows' - run: make -j all - run: make -j test