From 5e65dd87dddad878d1293a09b0607ae47c00152e Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Thu, 28 Mar 2024 20:50:01 +0000 Subject: [PATCH] ci: don't parallelize `distcheck` job A while ago the `distcheck` CI job became flaky. This continued after switching to Debian stable (from testing). Try stabilzing it by running it single-threaded. Closes #1339 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b4c5e0cd..b5932f8e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -195,7 +195,7 @@ jobs: - name: 'autotools distcheck' if: ${{ matrix.target == 'distcheck' }} timeout-minutes: 10 - run: make -C bld -j3 distcheck + run: make -C bld distcheck - name: 'cmake configure' if: ${{ matrix.build == 'cmake' }} run: |