Skip to content

Commit b0a1381

Browse files
committed
CI: use clang on windows
1 parent e05269a commit b0a1381

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,9 +190,15 @@ jobs:
190190
python -m pip install -r requirements.txt
191191
python -m pip install -r docs/requirements.txt
192192
193+
- name: Install clang
194+
run: |
195+
choco install llvm -y
196+
193197
- name: Build package
194198
env:
195-
CL: "/std:c++17"
199+
CC: clang-cl
200+
CXX: clang-cl
201+
CXXFLAGS: "-std=c++17"
196202
run: |
197203
python scripts/build/install.py
198204

0 commit comments

Comments
 (0)