Skip to content

Commit 07e3cee

Browse files
authored
Update windows.yml
1 parent d0f0425 commit 07e3cee

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/windows.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ jobs:
1919
matrix:
2020
runs-on: [windows-latest]
2121
sys:
22-
- {compiler: default}
22+
- {compiler: default, os: windows-latest}
23+
- {compiler: default, os: windows-2019}
24+
- {compiler: clang-cl, os: windows-latest}
2325
# Enable again and fix remaining issues after refactoring
2426
#- {compiler: clang}
2527

@@ -29,11 +31,12 @@ jobs:
2931
if: matrix.sys.compiler == 'default'
3032
uses: ilammy/msvc-dev-cmd@v1
3133

32-
- name: Setup clang
33-
if: matrix.sys.compiler == 'clang'
34+
- name: Setup clang-cl
35+
if: matrix.sys.compiler == 'clang-cl'
3436
run: |
35-
echo "CC=clang" >> $GITHUB_ENV
36-
echo "CXX=clang++" >> $GITHUB_ENV
37+
echo "CC=clang-cl" >> $GITHUB_ENV
38+
echo "CXX=clang-cl" >> $GITHUB_ENV
39+
echo "clang-cl --version"
3740
3841
- name: Checkout code
3942
uses: actions/checkout@v3

0 commit comments

Comments
 (0)