nameof_module/.appveyor.yml

32 lines
484 B
YAML
Raw Normal View History

2019-07-30 18:45:36 +00:00
version: "{branch} #{build}"
2019-08-24 15:31:42 +00:00
image:
- Visual Studio 2017
platform:
- Win32
- x64
configuration:
- Debug
- Release
build:
parallel: true
environment:
2019-08-24 15:31:42 +00:00
matrix:
- GENERATOR: "Visual Studio 15 2017"
before_build:
- if exist build RMDIR /S /Q build
- if not exist build mkdir build
- cd build
- cmake -G "%GENERATOR%" -A %PLATFORM% ..
build_script:
- cmake --build . --config %CONFIGURATION%
test_script:
2019-08-24 15:31:42 +00:00
- ctest --output-on-failure -C %CONFIGURATION%