From a8f9faf4967fad4b1d9e080f759cc02aa11e6e5d Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sun, 9 Aug 2026 12:11:19 +0200 Subject: [PATCH] Fix parallel flags for profiler GUI build in linux workflow. GitHub runners: limit to 2 jobs Non-gimped environments: use all you got. --- .github/workflows/linux.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 21de0c17..96af2619 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -38,9 +38,9 @@ jobs: run: | cmake -B profiler/build -S profiler -DCMAKE_BUILD_TYPE=Release -DGIT_REV=${{ github.sha }} if [ "${ACT:-}" != "true" ] && [ "${FORGEJO_ACTIONS:-}" != "true" ]; then - cmake --build profiler/build - else cmake --build profiler/build --parallel 2 + else + cmake --build profiler/build --parallel fi - name: Update utility run: |