From cb512ba80b8594efa3543365a7a3374c4415adba Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Wed, 18 Jun 2025 10:52:24 -0500 Subject: [PATCH] Use Depot Windows runners for `cargo test` (#18754) From 6m 15s -> 3m 54s (total runtime) See also https://github.com/astral-sh/uv/pull/14122 We don't use a Dev Drive here so this is trivial (ref #15664) --- .github/actionlint.yaml | 1 + .github/workflows/ci.yaml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/actionlint.yaml b/.github/actionlint.yaml index 81969ccb17..f96c7ead99 100644 --- a/.github/actionlint.yaml +++ b/.github/actionlint.yaml @@ -7,6 +7,7 @@ self-hosted-runner: - depot-ubuntu-latest-8 - depot-ubuntu-22.04-16 - depot-ubuntu-22.04-32 + - depot-windows-2022-16 - github-windows-2025-x86_64-8 - github-windows-2025-x86_64-16 - codspeed-macro diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 03d71094a7..1d7124e09e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -313,7 +313,7 @@ jobs: cargo-test-windows: name: "cargo test (windows)" - runs-on: github-windows-2025-x86_64-16 + runs-on: depot-windows-2022-16 needs: determine_changes if: ${{ !contains(github.event.pull_request.labels.*.name, 'no-test') && (needs.determine_changes.outputs.code == 'true' || github.ref == 'refs/heads/main') }} timeout-minutes: 20