mirror of
https://github.com/unittest-cpp/unittest-cpp
synced 2026-09-26 16:19:30 +03:00
30 lines
618 B
YAML
30 lines
618 B
YAML
version: 2.0.0.{build}
|
|
|
|
os:
|
|
- Windows Server 2012 R2
|
|
|
|
environment:
|
|
matrix:
|
|
|
|
- CMAKE_GENERATOR: Visual Studio 9 2008
|
|
- CMAKE_GENERATOR: Visual Studio 10 2010
|
|
- CMAKE_GENERATOR: Visual Studio 11 2012
|
|
- CMAKE_GENERATOR: Visual Studio 12 2013
|
|
- CMAKE_GENERATOR: Visual Studio 14 2015
|
|
|
|
before_build:
|
|
# Generate solution files using cmake, in 'builds' directory.
|
|
# No need to create it because it's part of the repo.
|
|
- pushd builds && cmake -G "%CMAKE_GENERATOR%" ..\ && popd
|
|
|
|
configuration:
|
|
- Debug
|
|
- Release
|
|
|
|
build_script:
|
|
- pushd builds && cmake --build . && popd
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
|
|
|