Skip to content

Commit 6f5cda4

Browse files
committed
Test Debug and Release on ClangCL
1 parent bfd8c38 commit 6f5cda4

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,11 +251,15 @@ jobs:
251251
252252
windows-clang:
253253
runs-on: windows-latest
254+
strategy:
255+
fail-fast: false
256+
matrix:
257+
buildType: [Debug, Release]
254258
steps:
255259
- uses: actions/checkout@v3
256260
- name: build
257261
run: |
258-
cmake -B build -G "Visual Studio 17 2022" -T ClangCL
262+
cmake -B build -DCMAKE_BUILD_TYPE=${{matrix.buildType}} -G "Visual Studio 17 2022" -T ClangCL
259263
cmake --build build --target qjs_exe
260264
- name: stats
261265
run: |

0 commit comments

Comments
 (0)