Skip to content

Commit ee9c3c2

Browse files
userFRMclaude
andcommitted
ci: skip stress tests in cross-platform matrix, add timeout
The cross-platform job ran cargo test --all-targets with no skips, causing stress tests (stress_1m, mpmc_stress, etc.) to hang on macOS runners. Added the same skip list used by the main test job and a 5-minute timeout. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 2aed5db commit ee9c3c2

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,13 @@ jobs:
124124
- uses: dtolnay/rust-toolchain@stable
125125
- uses: Swatinem/rust-cache@v2
126126
- run: cargo check
127-
- run: cargo test --all-targets
127+
- run: >
128+
cargo test --all-targets --
129+
--skip mpmc_stress
130+
--skip stress_1m
131+
--skip arbitrary_capacity_mpmc_stress
132+
--skip arbitrary_capacity_stress
133+
timeout-minutes: 5
128134
129135
# ── WASM build (verify no_std / WASM compatibility) ──────────────────
130136
wasm:

0 commit comments

Comments
 (0)