From dda9a9b0fd97d5dfbc911dca8a77853f1f1526d8 Mon Sep 17 00:00:00 2001 From: Jarred Sumner Date: Thu, 8 Jan 2026 14:38:35 -0800 Subject: [PATCH] Increase shard count for Windows & Linux test runs (#25913) ### What does this PR do? ### How did you verify your code works? --- .buildkite/ci.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.buildkite/ci.mjs b/.buildkite/ci.mjs index 007b35c306..a9fe144bdb 100755 --- a/.buildkite/ci.mjs +++ b/.buildkite/ci.mjs @@ -588,7 +588,7 @@ function getTestBunStep(platform, options, testOptions = {}) { agents: getTestAgent(platform, options), retry: getRetry(), cancel_on_build_failing: isMergeQueue(), - parallelism: os === "darwin" ? 2 : 10, + parallelism: os === "darwin" ? 2 : 20, timeout_in_minutes: profile === "asan" || os === "windows" ? 45 : 30, env: { ASAN_OPTIONS: "allow_user_segv_handler=1:disable_coredump=0:detect_leaks=0",