File tree Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -204,44 +204,46 @@ jobs:
204204 uses : microsoft/setup-msbuild@v2
205205 with :
206206 vs-version : ' [17.6,17.13)'
207- # - name: Install VisualStudio path
208- # shell: cmd
209- # run: |
210- # call "C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvars64.bat"
211- # - name: Install VisualStudio tools
212- # run: |
213- # choco install visualstudio2022buildtools
214- # choco install visualstudio2022-workload-vctools
207+ - name : Install VisualStudio tools
208+ run : |
209+ choco install visualstudio2022buildtools
210+ choco install visualstudio2022-workload-vctools
215211 - name : Set up MSVC environment
216212 shell : cmd
217213 run : |
218214 call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
219215 set CL=/MP
220216 set
221217 - name : Configure for debug
218+ shell : cmd
222219 run : |
223220 qmake -version
224221 .\configure.bat --enable-debug
225222 - name : Build for debug
223+ shell : cmd
226224 run : |
227225 cd src
228226 nmake install
229227 cd ..\tools
230228 nmake install
231229 - name : Test modules
230+ shell : cmd
232231 run : |
233232 cd test
234233 testall.bat
235234 - name : Configure for release
235+ shell : cmd
236236 run : |
237237 .\configure.bat
238238 - name : Build for release
239+ shell : cmd
239240 run : |
240241 cd src
241242 nmake install
242243 cd ..\tools
243244 nmake install
244245 - name : Test
246+ shell : cmd
245247 run : |
246248 tools\releasetest\releasetest.bat
247249
You can’t perform that action at this time.
0 commit comments