From 130f4885a0bac489b32a57594b06b08b0e599ec0 Mon Sep 17 00:00:00 2001 From: ludamad Date: Tue, 17 Feb 2026 14:41:58 -0500 Subject: [PATCH] fix(ci): insufficient parallelism in merge-queue-heavy We were starting the ARM job only at the end. --- ci.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci.sh b/ci.sh index cbec87590272..da4966235f47 100755 --- a/ci.sh +++ b/ci.sh @@ -129,7 +129,7 @@ case "$cmd" in } export -f run - parallel --jobs 10 --termseq 'TERM,10000' --tagstring '{= $_=~s/run (\w+).*/$1/; =}' --line-buffered --halt now,fail=1 ::: \ + parallel --jobs 11 --termseq 'TERM,10000' --tagstring '{= $_=~s/run (\w+).*/$1/; =}' --line-buffered --halt now,fail=1 ::: \ 'run x1-full amd64 ci-full-no-test-cache' \ 'run x2-full amd64 ci-full-no-test-cache' \ 'run x3-full amd64 ci-full-no-test-cache' \