nameof_module/.appveyor.yml
2018-05-28 17:28:54 +05:00

35 lines
660 B
YAML

version: "{branch} #{build}"
image:
- Visual Studio 2017
platform:
- x64
configuration:
- Debug
- Release
shallow_clone: true
matrix:
fast_finish: false
environment:
matrix:
- GENERATOR: "Visual Studio 15 2017 Win64"
- GENERATOR: "Visual Studio 15 2017"
- GENERATOR: "Visual Studio 14 2015 Win64"
- GENERATOR: "Visual Studio 14 2015"
before_build:
- if exist build RMDIR /S /Q build
- if not exist build mkdir build
- cd build
- cmake .. -G "%GENERATOR%" -DCMAKE_BUILD_TYPE=${CONFIGURATION}
build_script:
- cmake --build . --config %CONFIGURATION%
test_script:
- ctest -V --output-on-failure -C %CONFIGURATION%