We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04f76dc commit 39f2c9cCopy full SHA for 39f2c9c
.github/workflows/ci.yaml
@@ -18,12 +18,16 @@ jobs:
18
os: [windows-2025, windows-2022]
19
steps:
20
- uses: actions/checkout@v2
21
- - name: Build on ${{ matrix.os }} with vs-2019
+ - name: Set up with Developer Command Prompt for Microsoft Visual C++
22
+ uses: ilammy/msvc-dev-cmd@v1
23
+ with:
24
+ arch: amd64
25
+ - name: Build on ${{ matrix.os }} with MSVC
26
run: |
- .\scripts\win_build.bat
27
+ cmake -G "NMake Makefiles" -DCIO_TESTS=On .
28
- name: Run unit tests.
29
- ctest --rerun-failed --output-on-failure -C Debug --test-dir .
30
+ ctest . --rerun-failed --output-on-failure --test-dir .
31
build-unix:
32
name: Build sources on amd64 for ${{ matrix.os }} - ${{ matrix.compiler }}
33
runs-on: ${{ matrix.os }}
0 commit comments