• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1version: '{build}'
2shallow_clone: true
3
4platform: x64
5
6environment:
7  matrix:
8  - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
9    CMAKE_GENERATOR: "Visual Studio 15 2017 Win64"
10  - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
11    CMAKE_GENERATOR: "Visual Studio 14 2015 Win64"
12
13matrix:
14  fast_finish: true
15
16before_build:
17  - cmake --version
18  - cmake -DCMAKE_BUILD_TYPE=Debug -DBUILD_TESTING=ON -H. -Bcmake_build -G "%CMAKE_GENERATOR%"
19
20build_script:
21  - cmake --build cmake_build --config Debug --target ALL_BUILD
22
23test_script:
24  - cmake --build cmake_build --config Debug --target RUN_TESTS
25