mirror of
https://github.com/yhirose/cpp-peglib.git
synced 2024-11-13 22:55:29 +00:00
30 lines
675 B
YAML
30 lines
675 B
YAML
clone_depth: 5
|
|
|
|
environment:
|
|
matrix:
|
|
- JOB: Visual Studio 2015
|
|
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
|
|
CMAKE_GENERATOR: "Visual Studio 14 2015"
|
|
- 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
|