From 0f6a2579b9dec40a96e0d782a29b53c8fc430db3 Mon Sep 17 00:00:00 2001 From: Quinn Date: Mon, 15 Sep 2025 09:40:31 +0200 Subject: [PATCH] forcibly recompile the libs, so if deps get updated, this will be carried through. This sacrifices a bit of workflow performance, but won't be too significant. The heaviest step (cmake) is still circumvented --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index e91877a..65f6370 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -32,6 +32,6 @@ jobs: path: lib/obj/ key: ${{runner.os}}-lib/obj-${{github.sha}} restore-keys: ${{runner.os}}-lib/obj- - - run: make -j libs + - run: make -Bj libs - run: make -j all - run: make -j test