cpp-peglib/appveyor.yml

27 lines
544 B
YAML
Raw Normal View History

clone_depth: 5
environment:
matrix:
- JOB: Visual Studio 2017
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
CMAKE_GENERATOR: "Visual Studio 15 2017"
2020-01-23 22:27:29 +00:00
- 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