-
Notifications
You must be signed in to change notification settings - Fork 31
/
.travis.yml
96 lines (94 loc) · 2.3 KB
/
.travis.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# Matrix Build Declaration
language: cpp
sudo: required
dist: trusty
branches:
except:
- gh_pages
before_install: bash ./scripts/travis-before-install
before_script: bash ./scripts/travis-configure
install: bash ./scripts/travis-install
script: cmake --build build --target check -- CTEST_OUTPUT_ON_FAILURE=1 VERBOSE=1
after_success: bash <(curl -s https://codecov.io/bash)
matrix:
include:
- os: linux
compiler: gcc
env: BUILD=Release VERSION=5
- os: linux
compiler: gcc
env: BUILD=Debug VERSION=5
- os: linux
compiler: gcc
env: BUILD=Release VERSION=6
- os: linux
compiler: gcc
env: BUILD=Debug VERSION=6
- os: linux
compiler: clang
env: BUILD=Release VERSION=3.7
- os: linux
compiler: clang
env: BUILD=Debug VERSION=3.7
- os: linux
compiler: clang
env: BUILD=Release VERSION=3.8
- os: linux
compiler: clang
env: BUILD=Debug VERSION=3.8
- os: linux
compiler: clang
env: BUILD=Release VERSION=3.9
- os: linux
compiler: clang
env: BUILD=Debug VERSION=3.9
- os: linux
compiler: clang
env: BUILD=Release VERSION=3.7 LIBCXX=ON
- os: linux
compiler: clang
env: BUILD=Release VERSION=3.7 LIBCXX=ON
- os: linux
compiler: clang
env: BUILD=Release VERSION=3.8 LIBCXX=ON
- os: linux
compiler: clang
env: BUILD=Debug VERSION=3.8 LIBCXX=ON
- os: linux
compiler: clang
env: BUILD=Release VERSION=3.9 LIBCXX=ON
- os: linux
compiler: clang
env: BUILD=Debug VERSION=3.9 LIBCXX=ON
- os: osx
osx_image: xcode6.4
compiler: clang
env: BUILD=Release
- os: osx
osx_image: xcode6.4
compiler: clang
env: BUILD=Debug
- os: osx
osx_image: xcode7.3
compiler: clang
env: BUILD=Release
- os: osx
osx_image: xcode7.3
compiler: clang
env: BUILD=Debug
- os: osx
osx_image: xcode8
compiler: clang
env: BUILD=Release
- os: osx
osx_image: xcode8
compiler: clang
env: BUILD=Debug
- os: osx
osx_image: xcode8
compiler: clang
env: BUILD=Release, CXX_STANDARD=c++1z
- os: osx
osx_image: xcode8
compiler: clang
env: BUILD=Debug, CXX_STANDARD=c++1z