From 96a982b82059fcd428b70774089c8ff459fa1134 Mon Sep 17 00:00:00 2001 From: starr-openai Date: Tue, 19 May 2026 19:42:39 -0700 Subject: [PATCH] Pass repro filterset through env --- .github/workflows/rust-ci-full-nextest-platform.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust-ci-full-nextest-platform.yml b/.github/workflows/rust-ci-full-nextest-platform.yml index ffbdd0f007..21a79b9e02 100644 --- a/.github/workflows/rust-ci-full-nextest-platform.yml +++ b/.github/workflows/rust-ci-full-nextest-platform.yml @@ -417,7 +417,7 @@ jobs: --archive-file "${archive_file}" --workspace-remap "${workspace_root}" --partition "hash:${{ matrix.shard }}/4" - --filterset "${{ inputs.nextest_filterset }}" + --filterset "${NEXTEST_FILTERSET}" ) if [[ "${{ inputs.test_threads }}" != "0" ]]; then nextest_args+=(--test-threads "${{ inputs.test_threads }}") @@ -448,6 +448,7 @@ jobs: "${test_command[@]}" done env: + NEXTEST_FILTERSET: ${{ inputs.nextest_filterset }} RUST_BACKTRACE: 1 RUST_MIN_STACK: "8388608" # 8 MiB NEXTEST_STATUS_LEVEL: leak