Skip to content

Commit

Permalink
Fix Appveyor CMake build
Browse files Browse the repository at this point in the history
  • Loading branch information
Flamefire committed May 15, 2024
1 parent 8e609d3 commit 39897b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ for:
- mkdir __build_cmake_test__
- cd __build_cmake_test__
- cmake -G "%GENERATOR%" -DCMAKE_CXX_STANDARD=%CXXSTD% %CMAKE_FLAGS% -DCMAKE_INSTALL_PREFIX=%INSTALL_DIR% ..
build_script: cmake --build . --config %configuration% --parallel 4
build_script: cmake --build . --config %configuration% --parallel 4 --target tests
test_script:
- ctest --output-on-failure -C %configuration% --parallel 4
- ps: |
Expand All @@ -204,7 +204,7 @@ for:
- cmake -G "%GENERATOR%" ..
- ps: |
cov-configure --msvc
cov-build --dir cov-int cmake --build . --config $env:configuration
cov-build --dir cov-int cmake --build --target tests . --config $env:configuration
If ($LastExitCode -ne 0) {
cat cov-int/build-log.txt
$host.SetShouldExit($LastExitCode)
Expand Down

0 comments on commit 39897b9

Please sign in to comment.