Skip to content

Commit e11257e

Browse files
committed
chore: manually install VS build tools for Windows 2025 image
Signed-off-by: Kaila Sirvent <[email protected]>
1 parent bd06e83 commit e11257e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,12 @@ jobs:
4040
uses: actions/setup-python@v6
4141
with:
4242
python-version: '3.11'
43+
- name: Install C++ build tools
44+
if: runner.os == 'Windows'
45+
shell: pwsh
46+
run: |
47+
Invoke-WebRequest -Uri https://aka.ms/vs/17/release/vs_buildtools.exe -OutFile vs_buildtools.exe
48+
./vs_buildtools.exe --quiet --wait --norestart --add Microsoft.VisualStudio.Workload.VCTools --includeRecommended
4349
- name: Install dependencies
4450
env:
4551
PYTHON: ${{env.pythonLocation}}/bin/python3

0 commit comments

Comments
 (0)