We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd06e83 commit e11257eCopy full SHA for e11257e
.github/workflows/continuous-integration.yml
@@ -40,6 +40,12 @@ jobs:
40
uses: actions/setup-python@v6
41
with:
42
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
49
- name: Install dependencies
50
env:
51
PYTHON: ${{env.pythonLocation}}/bin/python3
0 commit comments