-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy path.gitlab-ci.yml
More file actions
291 lines (275 loc) · 6.71 KB
/
.gitlab-ci.yml
File metadata and controls
291 lines (275 loc) · 6.71 KB
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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
stages:
- build_major_compilers
- build_minor_compiler_gcc10
- build_minor_compiler_gcc9
- build_minor_compiler_gcc8
- build_minor_compiler_gcc7
- build_major_compiler_clang
- check_typos
- run_cppcheck
- build_minor_compiler_arm
- install_deb_file
- install_rpm_file
build_gcc:
only:
refs:
- master
tags:
- vm_linux
stage: build_major_compilers
image: gcc
script:
- apt-get update
- apt-get install cmake -y
# Build without boost
- ./build.sh
# Build with boost
- apt-get install libboost-test-dev -y
- cd build
- cmake .. -DCMAKE_BUILD_TYPE=Release -DCPPINCLUDE_BUILD_WITH_TESTS=ON
- cmake --build . --config Release -j$(nproc)
# Run tests
- ctest . -C Release
build_gcc10:
only:
refs:
- master
tags:
- vm_linux
stage: build_minor_compiler_gcc10
image: ubuntu
script:
- apt-get update
- apt-get install cmake gcc-10 g++-10 -y
- export CC=gcc-10
- export CXX=g++-10
# Build without boost
- ./build.sh
# Build with boost
- apt-get install libboost-test-dev -y
- cd build
- cmake .. -DCMAKE_BUILD_TYPE=Release -DCPPINCLUDE_BUILD_WITH_TESTS=ON
- cmake --build . --config Release -j$(nproc)
# Run tests
- ctest . -C Release
needs: [build_gcc]
build_gcc9:
only:
refs:
- master
tags:
- vm_linux
stage: build_minor_compiler_gcc9
image: ubuntu
script:
- apt-get update
- apt-get install cmake gcc-9 g++-9 libboost-test-dev -y
- export CC=gcc-9
- export CXX=g++-9
- cd build
- cmake .. -DCMAKE_BUILD_TYPE=Release -DCPPINCLUDE_BUILD_WITH_TESTS=ON
- cmake --build . --config Release -j$(nproc)
# Run tests
- ctest . -C Release
needs: [build_gcc10]
build_gcc8:
only:
refs:
- master
tags:
- vm_linux
stage: build_minor_compiler_gcc8
image: ubuntu
script:
- apt-get update
- apt-get install cmake gcc-8 g++-8 libboost-test-dev -y
- export CC=gcc-8
- export CXX=g++-8
- cd build
- cmake .. -DCMAKE_BUILD_TYPE=Release -DCPPINCLUDE_BUILD_WITH_TESTS=ON
- cmake --build . --config Release -j$(nproc)
# Run tests
- ctest . -C Release
needs: [build_gcc9]
build_gcc7:
only:
refs:
- master
tags:
- vm_linux
stage: build_minor_compiler_gcc7
image: ubuntu
script:
- apt-get update
- apt-get install cmake gcc-7 g++-7 libboost-test-dev -y
- export CC=gcc-7
- export CXX=g++-7
- cd build
- cmake .. -DCMAKE_BUILD_TYPE=Release -DCPPINCLUDE_BUILD_WITH_TESTS=ON
- cmake --build . --config Release -j$(nproc)
# Run tests
- ctest . -C Release
needs: [build_gcc8]
build_clang:
only:
refs:
- master
tags:
- vm_linux
stage: build_major_compiler_clang
image: ubuntu
script:
- apt-get update
- apt-get install cmake clang libboost-test-dev -y
- export CC=/usr/bin/clang
- export CXX=/usr/bin/clang++
- cd build
- cmake .. -DCMAKE_BUILD_TYPE=Release -DCPPINCLUDE_BUILD_WITH_TESTS=ON
- cmake --build . --config Release -j$(nproc)
# Run tests
- ctest . -C Release
needs: [build_gcc7]
build_windows:
only:
refs:
- master
stage: build_major_compilers
tags:
- vm_win
script:
#- choco install cmake -y
- $env:PATH="C:\Program Files\CMake\bin;$env:PATH"
# Build without boost
- cmd /c ".\build.bat"
# Clean build folder
- rm -r -fo ./build
- mkdir build
- cd build
# Build with boost
#- vcpkg install boost-test:x64-windows
#- vcpkg install boost-system:x64-windows
- cmake .. -G "Visual Studio 16" -DCMAKE_BUILD_TYPE=Release -DCPPINCLUDE_BUILD_WITH_TESTS=ON -DCMAKE_TOOLCHAIN_FILE=C:\vcpkg\scripts\buildsystems\vcpkg.cmake
- cmake --build . --config Release -j4
# Run tests
- ctest . -C Release
build_vs2017:
only:
refs:
- master
stage: build_major_compilers
tags:
- vm_win
script:
#- choco install visualstudio2017community -y
#- choco install visualstudio2017-workload-nativedesktop -y
#- choco install cmake -y
- $env:PATH="C:\Program Files\CMake\bin;$env:PATH"
- cd build
- cmake -G "Visual Studio 15" .. -DCMAKE_BUILD_TYPE=Release
- cmake --build . --config Release -j4
build_macos:
only:
refs:
- master
stage: build_major_compilers
tags:
- macmini
script:
# Build without boost
- ./build.sh
# Build with boost
# brew install boost
- cd build
- cmake .. -DCMAKE_BUILD_TYPE=Release -DCPPINCLUDE_BUILD_WITH_TESTS=ON
- cmake --build . --config Release -j4
# Run tests
- ctest . -C Release
build_arm_linux:
only:
refs:
- master
stage: build_minor_compiler_arm
tags:
- arm-linux
script:
- cd build
- cmake .. -DCMAKE_BUILD_TYPE=Release -DCPPINCLUDE_BUILD_WITH_TESTS=ON
- cmake --build . --config Release -j$(nproc)
# Run tests
- ctest . -C Release
needs: [build_gcc]
check_typos:
only:
refs:
- master
tags:
- vm_linux
stage: check_typos
image: ubuntu
script:
- apt-get update
- export DEBIAN_FRONTEND=noninteractive
- ln -fs /usr/share/zoneinfo/America/New_York /etc/localtime
- apt-get install -y tzdata
- dpkg-reconfigure --frontend noninteractive tzdata
- apt-get install npm -y
- npm install -g cspell
- cspell "src/**/*"
needs: [build_clang]
cppcheck:
only:
refs:
- master
tags:
- vm_linux
stage: run_cppcheck
image: ubuntu
script:
- apt-get update
- apt-get install cmake gcc g++ libboost-test-dev cppcheck -y
- cd build
- cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DCPPINCLUDE_BUILD_WITH_TESTS=ON
- cppcheck --project=compile_commands.json --enable=all --suppressions-list=../.cppcheck-suppressions-list --error-exitcode=1 --quiet
needs: [check_typos]
generate_deb_file:
only:
refs:
- master
tags:
- vm_linux
stage: install_deb_file
image: ubuntu
script:
- apt-get update
- apt-get install -y gcc-10 g++-10 cmake file
- export CC=gcc-10
- export CXX=g++-10
- cd build
- cmake .. -DCMAKE_BUILD_TYPE=Release
- cmake --build . --config Release -j$(nproc)
# Generate deb file
- cpack -G DEB
- dpkg -i *.deb
- cd ..
- cppinclude --version
needs: [cppcheck]
generate_rpm_file:
only:
refs:
- master
tags:
- vm_linux
stage: install_rpm_file
image: centos
script:
- yum group install "Development Tools" -y
- yum install cmake3 libarchive -y
- cd build
- cmake3 .. -DCMAKE_BUILD_TYPE=Release
- cmake3 --build . --config Release
# Generate rpm file
- cpack -G RPM
- rpm -i *.rpm
- cd ..
- cppinclude --version
needs: [build_gcc]