Skip to content

Commit d988269

Browse files
joseph-isaacsclaude
andcommitted
fix: Install Visual Studio Build Tools via Chocolatey
The windows22-full-x64 image doesn't include Visual Studio by default. Install visualstudio2022buildtools with VCTools workload via Chocolatey. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]> Signed-off-by: Joe Isaacs <[email protected]>
1 parent 8503b98 commit d988269

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -429,9 +429,11 @@ jobs:
429429
with:
430430
sccache: s3
431431
- uses: actions/checkout@v5
432-
- name: Install MSVC Build Tools (Windows)
432+
- name: Install Visual Studio Build Tools (Windows)
433433
if: matrix.os == 'windows-x64'
434-
uses: ilammy/msvc-dev-cmd@v1
434+
shell: bash
435+
run: |
436+
choco install visualstudio2022buildtools --package-parameters "--add Microsoft.VisualStudio.Workload.VCTools --includeRecommended --passive" -y
435437
- uses: ./.github/actions/setup-rust
436438
with:
437439
repo-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)