We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6048362 commit f10a6ebCopy full SHA for f10a6eb
1 file changed
.github/workflows/ci.yaml
@@ -18,12 +18,17 @@ 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
+ cmake --build .
29
- name: Run unit tests.
30
- ctest --rerun-failed --output-on-failure -C Debug --test-dir .
31
+ ctest . --rerun-failed --output-on-failure --test-dir .
32
build-unix:
33
name: Build sources on amd64 for ${{ matrix.os }} - ${{ matrix.compiler }}
34
runs-on: ${{ matrix.os }}
0 commit comments