We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab593a0 commit 79d5a1cCopy full SHA for 79d5a1c
.github/workflows/build.yml
@@ -187,10 +187,13 @@ 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 /w vs_buildtools.exe --quiet --wait --norestart --nocache `
+ --add Microsoft.VisualStudio.Workload.VCTools `
194
+ --add Microsoft.VisualStudio.Component.VC.CMake.Project `
195
+ --add Microsoft.VisualStudio.Component.TestTools.BuildTools `
196
+ || IF "%ERRORLEVEL%"=="3010" EXIT 0) `
197
198
- name: Setup CMake
199
uses: lukka/get-cmake@latest
0 commit comments