Skip to content

Commit e0d9d8b

Browse files
joseph-isaacsclaude
andcommitted
fix: Add MSVC Build Tools for Windows runner
The windows22-base-x64 image doesn't include MSVC Build Tools which are required for compiling Rust with the msvc toolchain. Add them explicitly. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]> Signed-off-by: Joe Isaacs <[email protected]>
1 parent f6b2e2e commit e0d9d8b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ jobs:
412412
- runs-on=${{ github.run_id }}
413413
- family=m7i
414414
- cpu=8
415-
- image=windows22-full-x64
415+
- image=windows22-base-x64
416416
- tag=rust-test-windows
417417
- os: linux-arm64
418418
runner:
@@ -429,6 +429,9 @@ jobs:
429429
with:
430430
sccache: s3
431431
- uses: actions/checkout@v5
432+
- name: Install MSVC Build Tools (Windows)
433+
if: matrix.os == 'windows-x64'
434+
uses: ilammy/msvc-dev-cmd@v1
432435
- uses: ./.github/actions/setup-rust
433436
with:
434437
repo-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)