-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathappveyor.yml
More file actions
32 lines (25 loc) · 830 Bytes
/
appveyor.yml
File metadata and controls
32 lines (25 loc) · 830 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
matrix:
fast_finish: true
environment:
matrix:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
GENERATOR: "Visual Studio 12 Win64"
CONFIG: Release
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
GENERATOR: "Visual Studio 14 Win64"
CONFIG: Release
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
GENERATOR: "Visual Studio 15 Win64"
CONFIG: Release
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
GENERATOR: "Visual Studio 16 2019"
CONFIG: Release
before_build:
- cmake -H. -Bbuild -G"%GENERATOR%"
build_script:
- cmake --build build --config "%CONFIG%"
- cmake --build build --target examples --config "%CONFIG%"
- cmake --build build --target tools --config "%CONFIG%"
test_script:
- cd build
- ctest -C "%CONFIG%" --output-on-failure