Skip to content

Commit c534685

Browse files
committed
CI: add Windows clang targets
1 parent e4ac072 commit c534685

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/generate-tools.yaml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,18 @@ jobs:
1919
{"name": "macOS arm64", "os": "macos-15", "cmake_env": "CMAKE_OSX_ARCHITECTURES=arm64"},
2020
{"name": "macOS x86_64", "os": "macos-15", "cmake_env": "CMAKE_OSX_ARCHITECTURES=x86_64"},
2121
{"name": "Windows", "os": "windows-latest"},
22+
{"name": "Windows Clang-CL", "os": "windows-latest", "cmake_options": "-DCMAKE_C_COMPILER=clang-cl"},
23+
{"name": "Windows Clang", "os": "windows-latest", "cmake_options": "-DCMAKE_C_COMPILER=clang"},
2224
]
25+
include:
26+
- name: Windows Clang-CL
27+
os: windows-latest
28+
compiler: clang-cl
29+
- name: Windows Clang
30+
os: windows-latest
31+
compiler: clang
2332
env:
24-
CMAKE_OPTIONS: -DDEV_MODE=ON
33+
CMAKE_OPTIONS: -DDEV_MODE=ON ${{ matrix.target.cmake_options }}
2534
CMAKE_ENV: ${{ matrix.target.cmake_env }}
2635
steps:
2736
- name: list compilers

0 commit comments

Comments
 (0)