From ca0a63fb4328af00699bbc3b289f09fc8ddcd4cf Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Thu, 16 Jul 2026 04:14:51 -0700 Subject: [PATCH] perf(ci): retune cli-runner stripe packing hints from measured runs Validation run 29487321249 measured stripe 2 at 179s (hint said 110) while stripes 1/3 run light; the index striping concentrates import cost unevenly. Weight the hints accordingly so no compact bin overpacks past the 260s target. --- scripts/lib/ci-node-test-plan.mjs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/lib/ci-node-test-plan.mjs b/scripts/lib/ci-node-test-plan.mjs index d1e01ee752d4..b101f5c9a556 100644 --- a/scripts/lib/ci-node-test-plan.mjs +++ b/scripts/lib/ci-node-test-plan.mjs @@ -42,9 +42,9 @@ const COMPACT_GROUP_SECONDS_HINTS = new Map([ ["agentic-agents-core-auth", 32], ["agentic-agents-core-isolated", 10], ["agentic-agents-core-models", 66], - ["agentic-agents-core-runner-cli-1", 110], - ["agentic-agents-core-runner-cli-2", 110], - ["agentic-agents-core-runner-cli-3", 110], + ["agentic-agents-core-runner-cli-1", 60], + ["agentic-agents-core-runner-cli-2", 190], + ["agentic-agents-core-runner-cli-3", 60], ["agentic-agents-core-runner-commands", 30], ["agentic-agents-core-runner-embedded", 20], ["agentic-agents-core-runner-sessions", 18],