We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa6f3ee commit c25fe2bCopy full SHA for c25fe2b
1 file changed
.github/workflows/ci-windows.yml
@@ -29,15 +29,18 @@ jobs:
29
timeout-minutes: 5
30
runs-on: windows-2022
31
name: CI-windows (build)
32
+ strategy:
33
+ matrix:
34
+ build_type: [Release, Debug]
35
36
steps:
37
- uses: actions/checkout@v2
38
39
- name: Configure build system
40
run: |
41
cmake --version
- cmake -S . -B build_x64 -A x64 -G "Visual Studio 17 2022" -DSTATICLIB=ON -DCMAKE_BUILD_TYPE=Release -DCMAKE_VERBOSE_MAKEFILE=ON
42
+ cmake -S . -B build_x64 -A x64 -G "Visual Studio 17 2022" -DSTATICLIB=ON -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DCMAKE_VERBOSE_MAKEFILE=ON
43
44
- name: Build libkqueue
45
- cmake --build build_x64 --target install --config Release --parallel 1
46
+ cmake --build build_x64 --target install --config ${{ matrix.build_type }} --parallel 1
0 commit comments