We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e248ac commit ea5c199Copy full SHA for ea5c199
.github/workflows/ci.yml
@@ -192,16 +192,11 @@ jobs:
192
193
- name: Install clang
194
run: |
195
- choco install llvm -y
196
- echo "C:\\Program Files\\LLVM\\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
+ choco install llvm -y --force
197
198
- name: Build package
199
- env:
200
- CC: clang-cl
201
- CXX: clang-cl
202
- CL: "/std:c++17"
203
204
- python scripts/build/install.py
+ CC="clang-cl" CXX="clang-cl" python scripts/build/install.py
205
206
- name: Run tests
207
0 commit comments