From 4073704ab7c912646ee0dacca040f19eca2cc549 Mon Sep 17 00:00:00 2001 From: Pierre Massat Date: Mon, 15 Jun 2026 18:51:39 -0700 Subject: [PATCH] ci(sentry): Shard sentry tests over 16 runners Increase the sentry test matrix from 4 to 16 instances to reduce wall-clock time of the sentry job. The round-robin grouping is driven by the matrix instance count and MATRIX_INSTANCE_TOTAL, so both are bumped in lockstep. Co-Authored-By: Claude Opus 4.8 (1M context) Agent transcript: https://claudescope.sentry.dev/share/cg8C9Pe7N50McOUx8dm5I5EwAl24Tars1RrzsNzWFrE --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7964f6541f..5942199d43 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -366,11 +366,11 @@ jobs: timeout-minutes: 60 strategy: matrix: - instance: [0, 1, 2, 3] + instance: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15] env: MIGRATIONS_TEST_MIGRATE: 1 # XXX: `MATRIX_INSTANCE_TOTAL` must be hardcoded to the length of `strategy.matrix.instance`. - MATRIX_INSTANCE_TOTAL: 4 + MATRIX_INSTANCE_TOTAL: 16 TEST_GROUP_STRATEGY: ROUND_ROBIN steps: