Test Debug and Release on ClangCL
This commit is contained in:
parent
bfd8c381cb
commit
6f5cda46e7
1 changed files with 5 additions and 1 deletions
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
|
@ -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: |
|
||||
|
|
Loading…
Reference in a new issue