update ci to test clangcl

This commit is contained in:
coco875
2025-08-06 09:16:54 -06:00
committed by Lywx
parent a40ecdfb96
commit bfe33e3266
+4 -1
View File
@@ -9,11 +9,14 @@ on:
jobs:
build:
runs-on: windows-2022
strategy:
matrix:
toolchain: [v142, v143, clangcl]
steps:
- uses: actions/checkout@v4
- name: Build
run: |
cmake -S . -B "build/x64" -G "Visual Studio 17 2022" -T v142 -A x64 -DCMAKE_BUILD_TYPE:STRING=Release
cmake -S . -B "build/x64" -G "Visual Studio 17 2022" -T ${{ matrix.toolchain }} -A x64 -DCMAKE_BUILD_TYPE:STRING=Release
cmake --build ./build/x64
- name: Publish packaged artifacts
uses: actions/upload-artifact@v4