We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab593a0 commit 4bdd467Copy full SHA for 4bdd467
.github/workflows/build.yml
@@ -187,10 +187,9 @@ jobs:
187
- run: git config --system --add safe.directory /__w/unified/unified
188
189
- name: Setup MSVC
190
- uses: ilammy/msvc-dev-cmd@v1
191
- with:
192
- arch: amd64
193
- vsversion: 2017
+ run: |
+ Invoke-WebRequest https://aka.ms/vs/15/release/vs_buildtools.exe -OutFile vs_buildtools.exe
+ Start-Process -Wait -FilePath "vs_buildtools.exe" -ArgumentList "--quiet --wait --norestart --nocache --add Microsoft.VisualStudio.Workload.VCTools --add Microsoft.VisualStudio.Component.VC.CMake.Project --add Microsoft.VisualStudio.Component.TestTools.BuildTools"
194
195
- name: Setup CMake
196
uses: lukka/get-cmake@latest
0 commit comments