From fb7185d860d9190780b625cb08991d0fa56f42f8 Mon Sep 17 00:00:00 2001 From: Chris Tate Date: Thu, 12 Mar 2026 14:53:28 -0500 Subject: [PATCH] ci: switch from windows-latest-8-cores to windows-latest runner (#742) Resolves CI slowdown issues caused by limited availability of Windows containers with 8 cores by switching to the standard Windows runner image. ## Changes Made - Updated `rust-cross` job to use `windows-latest` instead of `windows-latest-8-cores` - Updated `windows-integration` job to use `windows-latest` instead of `windows-latest-8-cores` - Updated `global-install` job matrix to use `windows-latest` instead of `windows-latest-8-cores` This change trades some performance for better availability and faster CI queue times, as the standard Windows runners have much better availability than the 8-core variant. Fixes #741 --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c6c5215..4c713c2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -92,7 +92,7 @@ jobs: target: aarch64-apple-darwin - os: macos-latest target: x86_64-apple-darwin - - os: windows-latest-8-cores + - os: windows-latest target: x86_64-pc-windows-msvc steps: @@ -115,7 +115,7 @@ jobs: windows-integration: name: Windows Integration Test if: github.event_name != 'pull_request' - runs-on: windows-latest-8-cores + runs-on: windows-latest needs: rust-cross steps: @@ -243,7 +243,7 @@ jobs: - os: macos-latest target: aarch64-apple-darwin binary: agent-browser-darwin-arm64 - - os: windows-latest-8-cores + - os: windows-latest target: x86_64-pc-windows-msvc binary: agent-browser-win32-x64.exe