cpp-peglib/appveyor.yml
2020-11-09 13:18:38 -05:00

27 lines
544 B
YAML

clone_depth: 5
environment:
matrix:
- JOB: Visual Studio 2017
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
CMAKE_GENERATOR: "Visual Studio 15 2017"
- JOB: Visual Studio 2019
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
CMAKE_GENERATOR: "Visual Studio 16 2019"
platform:
- x86
- x64
configuration:
- Release
- Debug
build_script:
- mkdir build && cd build
- cmake .. -Wno-dev -G"%CMAKE_GENERATOR%"
- cmake --build . --config %CONFIGURATION%
test_script:
- ctest -C %CONFIGURATION% -V