We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfd8c38 commit 6f5cda4Copy full SHA for 6f5cda4
.github/workflows/ci.yml
@@ -251,11 +251,15 @@ jobs:
251
252
windows-clang:
253
runs-on: windows-latest
254
+ strategy:
255
+ fail-fast: false
256
+ matrix:
257
+ buildType: [Debug, Release]
258
steps:
259
- uses: actions/checkout@v3
260
- name: build
261
run: |
- 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
263
cmake --build build --target qjs_exe
264
- name: stats
265
0 commit comments