You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
cpp-peglib/appveyor.yml

26 lines
544 B

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