Test Debug and Release on ClangCL

This commit is contained in:
Saúl Ibarra Corretgé 2023-11-30 09:13:35 +01:00
parent bfd8c381cb
commit 6f5cda46e7

View file

@ -251,11 +251,15 @@ jobs:
windows-clang: windows-clang:
runs-on: windows-latest runs-on: windows-latest
strategy:
fail-fast: false
matrix:
buildType: [Debug, Release]
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: build - name: build
run: | 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 cmake --build build --target qjs_exe
- name: stats - name: stats
run: | run: |