-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy path.travis.yml
185 lines (164 loc) · 4.39 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
language: cpp
dist: xenial
common_sources: &all_sources
- ubuntu-toolchain-r-test
- llvm-toolchain-xenial
- llvm-toolchain-xenial-4.0
- llvm-toolchain-xenial-5.0
- llvm-toolchain-xenial-6.0
# - llvm-toolchain-xenial-7.0
matrix:
include:
- os: linux
compiler: clang
addons:
apt:
sources: *all_sources
packages: ['clang-4.0']
env:
- COMPILER='clang++-4.0'
- CONAN_COMP='clang'
- CONAN_COMPV='4.0'
- os: linux
compiler: clang
addons:
apt:
sources: *all_sources
packages: ['clang-4.0', 'libc++-dev']
env:
- COMPILER='clang++-4.0'
- CONAN_COMP='clang'
- CONAN_COMPV='4.0'
- CONAN_LIBCXX=libc++
- os: linux
compiler: clang
addons:
apt:
sources: *all_sources
packages: ['clang-5.0']
env:
- COMPILER='clang++-5.0'
- CONAN_COMP='clang'
- CONAN_COMPV='5.0'
- os: linux
compiler: clang
addons:
apt:
sources: *all_sources
packages: ['clang-5.0', 'libc++-dev']
env:
- COMPILER='clang++-5.0'
- CONAN_COMP='clang'
- CONAN_COMPV='5.0'
- CONAN_LIBCXX=libc++
- os: linux
compiler: clang
addons:
apt:
sources: *all_sources
packages: ['clang-6.0', 'libstdc++-6-dev']
env:
- COMPILER='clang++-6.0'
- CONAN_COMP='clang'
- CONAN_COMPV='6.0'
- os: linux
compiler: clang
addons:
apt:
sources: *all_sources
packages: ['clang-6.0', 'libstdc++-7-dev']
env:
- COMPILER='clang++-6.0'
- CONAN_COMP='clang'
- CONAN_COMPV='6.0'
- os: linux
compiler: clang
addons:
apt:
sources: *all_sources
packages: ['clang-6.0', 'libstdc++-8-dev']
env:
- COMPILER='clang++-6.0'
- CONAN_COMP='clang'
- CONAN_COMPV='6.0'
- os: linux
compiler: clang
addons:
apt:
sources: *all_sources
packages: ['clang-6.0', 'libc++-dev']
env:
- COMPILER='clang++-6.0'
- CONAN_COMP='clang'
- CONAN_COMPV='6.0'
- CONAN_LIBCXX=libc++
# - os: linux
# compiler: clang
# addons:
# apt:
# sources: *all_sources
# packages: ['clang-7.0']
# env:
# - COMPILER='clang++-7.0'
# - CONAN_COMP='clang'
# - CONAN_COMPV='7.0'
- os: linux
compiler: gcc
addons:
apt:
sources: *all_sources
packages: ['g++-5', 'libstdc++-6-dev']
env:
- COMPILER='g++-5'
- CONAN_COMP='gcc'
- CONAN_COMPV='5'
- os: linux
compiler: gcc
addons:
apt:
sources: *all_sources
packages: ['g++-6']
env:
- COMPILER='g++-6'
- CONAN_COMP='gcc'
- CONAN_COMPV='6'
- os: linux
compiler: gcc
addons:
apt:
sources: *all_sources
packages: ['g++-7']
env:
- COMPILER='g++-7'
- CONAN_COMP='gcc'
- CONAN_COMPV='7'
- os: linux
compiler: gcc
addons:
apt:
sources: *all_sources
packages: ['g++-8']
env:
- COMPILER='g++-8'
- CONAN_COMP='gcc'
- CONAN_COMPV='8'
install:
- pip install --user conan
- conan user
before_script:
- export CXX=${COMPILER}
- cd ${TRAVIS_BUILD_DIR}
- mkdir -p cmake-build-debug && mkdir -p cmake-build-release
- conan install -s build_type=Debug -s compiler=${CONAN_COMP} -s compiler.version=${CONAN_COMPV} -s compiler.libcxx=${CONAN_LIBCXX:-libstdc++} -if cmake-build-debug --build missing test
- conan install -s build_type=Release -s compiler=${CONAN_COMP} -s compiler.version=${CONAN_COMPV} -s compiler.libcxx=${CONAN_LIBCXX:-libstdc++} -if cmake-build-release --build missing test
- cmake -Htest -Bcmake-build-debug -DCMAKE_BUILD_TYPE=Debug
- cmake -Htest -Bcmake-build-release -DCMAKE_BUILD_TYPE=Release
script:
- cd cmake-build-debug
- make
- ctest -V
# - for t in $(ls wise_enum_test*) ; do ./$t -r junit > ../$t-debug.xml ; done
- cd ../cmake-build-release
- make
- ctest -V
# - for t in $(ls wise_enum_test*) ; do ./$t -r junit > ../$t-release.xml ; done