There was an error while loading. Please reload this page.
1 parent 4689ded commit f43d108Copy full SHA for f43d108
1 file changed
.github/workflows/continuous.yml
@@ -117,12 +117,18 @@ jobs:
117
# Scoop modifies the PATH so we make it available for the next steps of the job
118
echo "${env:PATH}" >> ${env:GITHUB_PATH}
119
120
+ - name: Setup MSVC
121
+ uses: ilammy/msvc-dev-cmd@v1
122
+ with:
123
+ arch: x64
124
+
125
- name: Configure and build
126
shell: cmd
127
run: |
- call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\Tools\VsDevCmd.bat" -arch=x64
128
cmake --version
129
cmake -G Ninja ^
130
+ -DCMAKE_C_COMPILER=cl.exe ^
131
+ -DCMAKE_CXX_COMPILER=cl.exe ^
132
-DCMAKE_CXX_COMPILER_LAUNCHER=sccache ^
133
-DCMAKE_BUILD_TYPE=${{ matrix.config }} ^
134
-B build ^
0 commit comments