From 2261209d8dc7deeebba1f5ff1db2a9bd0aa9b102 Mon Sep 17 00:00:00 2001 From: Quinn Date: Wed, 17 Sep 2025 12:13:34 +0200 Subject: [PATCH] win: increase cores, to hopefully not spend 20min on compilation. --- .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 14f1dfb..1276ee9 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -42,7 +42,7 @@ jobs: - run: make -Bj libs if: steps.cache-deps.outputs.cache-hit != 'true' && runner.os != 'Windows' - - run: make -Bj1 libs # compile in single-core mode, to save memory, hopefully + - 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