From adfca88d3cd18295349880da73e0c91f08de36c1 Mon Sep 17 00:00:00 2001 From: Quinn Date: Wed, 17 Sep 2025 12:51:20 +0200 Subject: [PATCH] push compilation of libraries on everything to get rid of turtle compilation speeds --- .github/workflows/ci.yaml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 5b10dca..963c4b4 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -17,8 +17,8 @@ jobs: cc: gcc - os: windows-11-arm cc: gcc - # - os: macos-latest - # cc: cc + - os: macos-latest + cc: cc env: CC: ${{matrix.cc}} runs-on: ${{matrix.os}} @@ -47,10 +47,10 @@ jobs: key: ${{runner.os}}_${{runner.arch}}-lib/obj-${{steps.get-hash.outputs.HASH}} restore-keys: ${{runner.os}}_${{runner.arch}}-lib/obj- - - run: make -Bj libs - if: steps.cache-deps.outputs.cache-hit != 'true' && runner.os != 'Windows' - - run: make -Bj2 libs # compile fewer cores, to save memory. - if: steps.cache-deps.outputs.cache-hit != 'true' && runner.os == 'Windows' - - - run: make -j all - - run: make -j test + # - run: make -Bj libs + # if: steps.cache-deps.outputs.cache-hit != 'true' && runner.os != 'Windows' + # - run: make -Bj2 libs # compile fewer cores, to save memory. + # if: steps.cache-deps.outputs.cache-hit != 'true' && runner.os == 'Windows' + # + # - run: make -j all + # - run: make -j test