blob: f18635a3d1956e6a64c831007dbd48cbe777e673 [file] [log] [blame]
Guillaume Chateletdc6f0a72018-02-02 09:36:33 +01001version: '{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
Guillaume Chatelet3a156da2018-02-08 16:59:18 +010018 - cmake -DCMAKE_BUILD_TYPE=Debug -DBUILD_TESTING=ON -H. -Bcmake_build -G "%CMAKE_GENERATOR%"
Guillaume Chateletdc6f0a72018-02-02 09:36:33 +010019
20build_script:
Guillaume Chatelet3a156da2018-02-08 16:59:18 +010021 - cmake --build cmake_build --config Debug --target ALL_BUILD
Guillaume Chateletdc6f0a72018-02-02 09:36:33 +010022
23test_script:
Guillaume Chatelet3a156da2018-02-08 16:59:18 +010024 - cmake --build cmake_build --config Debug --target RUN_TESTS