From 110f83b61eca7088cc1758ca70f54a91a680d181 Mon Sep 17 00:00:00 2001 From: Michael Bolin Date: Sat, 21 Feb 2026 00:12:49 -0800 Subject: [PATCH] ci: skip windows arm64 tests on PRs in rust-ci --- .github/workflows/rust-ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust-ci.yml b/.github/workflows/rust-ci.yml index 8e8825e9f8..5002da3fcc 100644 --- a/.github/workflows/rust-ci.yml +++ b/.github/workflows/rust-ci.yml @@ -145,6 +145,8 @@ jobs: - runner: windows-arm64 target: aarch64-pc-windows-msvc profile: dev + # This is consistently the slowest test job; keep runtime coverage on pushes/manual runs. + skip_on_pr: true runs_on: group: codex-runners labels: codex-windows-arm64 @@ -455,7 +457,7 @@ jobs: runs-on: ${{ matrix.runs_on || matrix.runner }} timeout-minutes: 30 needs: changed - if: ${{ needs.changed.outputs.codex == 'true' || needs.changed.outputs.workflows == 'true' || github.event_name == 'push' }} + if: ${{ (needs.changed.outputs.codex == 'true' || needs.changed.outputs.workflows == 'true' || github.event_name == 'push') && !(github.event_name == 'pull_request' && matrix.skip_on_pr == true) }} defaults: run: working-directory: codex-rs