From bfe33e326614a315035067b1eb81dd0a59e67477 Mon Sep 17 00:00:00 2001 From: coco875 <59367621+coco875@users.noreply.github.com> Date: Tue, 5 Aug 2025 21:03:50 +0200 Subject: [PATCH] update ci to test clangcl --- .github/workflows/windows_build.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/windows_build.yml b/.github/workflows/windows_build.yml index 031d626..98141b9 100644 --- a/.github/workflows/windows_build.yml +++ b/.github/workflows/windows_build.yml @@ -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