From 6f5cda46e7b8c93a7b6abab42dc0c40139d94503 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Thu, 30 Nov 2023 09:13:35 +0100 Subject: [PATCH] Test Debug and Release on ClangCL --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 247d131..a927f83 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -251,11 +251,15 @@ jobs: windows-clang: runs-on: windows-latest + strategy: + fail-fast: false + matrix: + buildType: [Debug, Release] steps: - uses: actions/checkout@v3 - name: build run: | - cmake -B build -G "Visual Studio 17 2022" -T ClangCL + cmake -B build -DCMAKE_BUILD_TYPE=${{matrix.buildType}} -G "Visual Studio 17 2022" -T ClangCL cmake --build build --target qjs_exe - name: stats run: |