forked from tcbrindle/span
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
43 lines (32 loc) · 1.07 KB
/
appveyor.yml
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
33
34
35
36
37
38
39
40
41
42
43
# Do not build branches of the form "pr/*". By prefixing pull requests coming
# from branches inside the repository with pr/, this avoids building both the
# branch push _and_ the pull request.
# Based on https://github.com/boostorg/hana/blob/master/.travis.yml
branches:
except:
- /pr\/.+/
environment:
matrix:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 Preview
CXX_VER: 17
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 Preview
CXX_VER: 14
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 Preview
CXX_VER: 11
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
CXX_VER: 17
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
CXX_VER: 14
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
CXX_VER: 11
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
CXX_VER: 14
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
CXX_VER: 11
build_script:
- mkdir cmake-build
- cd cmake-build
- cmake .. -DTCB_SPAN_TEST_CXX_STD=%CXX_VER%
- cmake --build . --config Debug
test_script:
- ctest -j2