We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea44c11 commit bb8ed43Copy full SHA for bb8ed43
.github/workflows/Windows.yml
@@ -38,12 +38,10 @@ jobs:
38
- name: cmd3
39
if: ${{ matrix.cmd3 }}
40
run: ${{ matrix.cmd3 }}
41
- - name: vscmd
42
- uses: seanmiddleditch/gha-setup-vsdevenv@v4
43
- with:
44
- arch: $${ matrix.arch }}
45
- - name: cmake
46
- uses: lukka/get-cmake@latest
+ - name: Setup Visual Studio environment
+ run: |
+ $vcvarsall = "C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Auxiliary\\Build\\vcvarsall.bat"
+ cmd /c "$vcvarsall" ${{ matrix.arch }}
47
- name: configure
48
run: cmake ${{ matrix.bindings }} -G "NMake Makefiles" ../
49
- name: make
0 commit comments