-
Notifications
You must be signed in to change notification settings - Fork 38
/
.gitlab-ci.yml
266 lines (233 loc) · 7.11 KB
/
.gitlab-ci.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
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
# TODO:
# - Werror release build (uninitialized variable warning for GCC and eigen matrices, which for debug/relwithdebug are initialized to NAN)
# defaults
image: $CI_REGISTRY_IMAGE/ubuntu-ci-rootba:20.04
variables:
GIT_SUBMODULE_STRATEGY: recursive
BUILD_TYPE: CiRelWithDebInfo
stages:
- docker-image
- test
########################################################################
### Docker images
# build dev image and push to repository
docker-ci-image:
stage: docker-image
image: docker:stable
services:
- docker:stable-dind
variables:
IMAGE: $CI_REGISTRY_IMAGE/ubuntu-ci-rootba
DOCKER_TLS_CERTDIR: '/certs'
GIT_SUBMODULE_STRATEGY: none
DOCKER_DRIVER: overlay2
only:
- master
- ci-test
- ci
when: manual
tags:
- docker-dind
script:
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
- cd ci/docker
- >
FIRST=1; for tag in 22.04 20.04; do
# fetches the latest image for cache (not failing if image is not found)
docker pull $IMAGE:$tag || true
docker build --pull --cache-from $IMAGE:$tag -f Dockerfile_$tag -t $IMAGE:$tag .
docker push $IMAGE:$tag
if [ $FIRST == 1 ]; then
FIRST=0
docker tag $IMAGE:$tag $IMAGE:latest
docker push $IMAGE:latest
fi
done
########################################################################
### Static checks
# check if clang-format and yapf would make any changes
source-format:
tags:
- docker
variables:
GIT_SUBMODULE_STRATEGY: none
script:
- ./scripts/clang-format-all.sh
- ./scripts/yapf-all.sh
# check if any files are now modified and error if yes
- (if [ -n "`git diff --name-only --diff-filter=M --ignore-submodules`" ]; then echo $'\n Some files are not properly formatted. You can use "./scripts/clang-format-all.sh".\n'; git diff --diff-filter=M; false; fi)
########################################################################
### Build definitions
.compile_and_test_template: &compile_and_test_definition
script:
- cmake --version
- source ./ci/scripts/install-dependencies.sh
- time ./scripts/build-external.sh ${BUILD_TYPE}
- time ./scripts/build-rootba.sh ${BUILD_TYPE}
- cd build && ctest --output-on-failure
.prepare_docker_template: &prepare_docker_definition
tags:
- docker
before_script:
# - env
- source ./ci/scripts/docker-setup-ccache.sh
cache:
paths:
- ccache/
key: ${CI_JOB_NAME}
########################################################################
### Ubuntu builds
jammy-relwithdebinfo-build:
image: $CI_REGISTRY_IMAGE/ubuntu-ci-rootba:22.04
variables:
CC: gcc-11
CXX: g++-11
<<: *prepare_docker_definition
<<: *compile_and_test_definition
jammy-gcc12-relwithdebinfo-build:
image: $CI_REGISTRY_IMAGE/ubuntu-ci-rootba:22.04
variables:
CC: gcc-12
CXX: g++-12
<<: *prepare_docker_definition
<<: *compile_and_test_definition
jammy-gcc12-werror-debug-build:
image: $CI_REGISTRY_IMAGE/ubuntu-ci-rootba:22.04
<<: *prepare_docker_definition
<<: *compile_and_test_definition
variables:
ROOTBA_CXXFLAGS: "-Werror"
BUILD_TYPE: CiDebug
jammy-gcc12-werror-release-build:
image: $CI_REGISTRY_IMAGE/ubuntu-ci-rootba:22.04
<<: *prepare_docker_definition
<<: *compile_and_test_definition
variables:
ROOTBA_CXXFLAGS: "-Werror"
BUILD_TYPE: Release
jammy-clang16-werror-build:
image: $CI_REGISTRY_IMAGE/ubuntu-ci-rootba:22.04
<<: *prepare_docker_definition
<<: *compile_and_test_definition
variables:
CC: clang-16
CXX: clang++-16
ROOTBA_CXXFLAGS: "-Werror"
jammy-clang-tidy-build:
image: $CI_REGISTRY_IMAGE/ubuntu-ci-rootba:22.04
<<: *prepare_docker_definition
variables:
CC: clang-16
CXX: clang++-16
script:
- cmake --version
- source ./ci/scripts/install-dependencies.sh
- time ./scripts/build-external.sh ${BUILD_TYPE}
- time ./scripts/build-rootba.sh ${BUILD_TYPE}
- cd build && ctest --output-on-failure || true # allow test failure
- cd ..
- ./scripts/clang-tidy-all.sh
allow_failure: true # TODO: fix clang-tidy errors
focal-relwithdebinfo-build:
image: $CI_REGISTRY_IMAGE/ubuntu-ci-rootba:20.04
<<: *prepare_docker_definition
<<: *compile_and_test_definition
focal-release-build:
image: $CI_REGISTRY_IMAGE/ubuntu-ci-rootba:20.04
<<: *prepare_docker_definition
<<: *compile_and_test_definition
only:
- master
- ci-test
variables:
BUILD_TYPE: Release
focal-debug-build:
image: $CI_REGISTRY_IMAGE/ubuntu-ci-rootba:20.04
<<: *prepare_docker_definition
<<: *compile_and_test_definition
only:
- master
- ci-test
variables:
BUILD_TYPE: CiDebug
focal-gcc10-werror-build:
image: $CI_REGISTRY_IMAGE/ubuntu-ci-rootba:20.04
<<: *prepare_docker_definition
<<: *compile_and_test_definition
only:
- master
- ci-test
variables:
CC: gcc-10
CXX: g++-10
ROOTBA_CXXFLAGS: "-Werror"
focal-asan-build:
image: $CI_REGISTRY_IMAGE/ubuntu-ci-rootba:20.04
<<: *prepare_docker_definition
<<: *compile_and_test_definition
only:
- master
- ci-test
variables:
BUILD_TYPE: SanitizerRelWithDebInfo
# LeakSanitizer doesn't work in (non-priviliged) container
ASAN_OPTIONS: "detect_leaks=0"
focal-latest-tbb-build:
image: $CI_REGISTRY_IMAGE/ubuntu-ci-rootba:20.04
<<: *prepare_docker_definition
<<: *compile_and_test_definition
only:
- master
- ci-test
variables:
UBUNTU_INSTALL_LATEST_TBB: "1"
TBB_ROOT: /opt/intel/tbb
focal-clang-tidy-build:
image: $CI_REGISTRY_IMAGE/ubuntu-ci-rootba:20.04
<<: *prepare_docker_definition
script:
- cmake --version
- source ./ci/scripts/install-dependencies.sh
- time ./scripts/build-external.sh ${BUILD_TYPE}
- time ./scripts/build-rootba.sh ${BUILD_TYPE}
- cd build && ctest --output-on-failure || true # allow test failure
- cd ..
- ./scripts/clang-tidy-all.sh
allow_failure: true # TODO: fix clang-tidy errors
########################################################################
### macOS builds
catalina-relwithdebinfo-build:
<<: *compile_and_test_definition
tags: [macos, "10.15"]
variables:
DBATK_USE_BREWED_LIBCXX: "ON"
catalina-brewclang-relwithdebinfo-build:
<<: *compile_and_test_definition
tags: [macos, "10.15"]
variables:
CC: /usr/local/opt/llvm/bin/clang
CXX: /usr/local/opt/llvm/bin/clang++
only:
- master
- ci-test
catalina-brewclang-asan-build:
<<: *compile_and_test_definition
tags: [macos, "10.15"]
variables:
CC: /usr/local/opt/llvm/bin/clang
CXX: /usr/local/opt/llvm/bin/clang++
BUILD_TYPE: SanitizerRelWithDebInfo
# don't activate leak sanitizer; seems to give false positives in system libs...
# ASAN_OPTIONS: "detect_leaks=1"
bigsur-relwithdebinfo-build:
<<: *compile_and_test_definition
tags: [macos, "11", x86_64]
monterey-arm-relwithdebinfo-build:
<<: *compile_and_test_definition
tags: [macos, "12", arm64]
monterey-arm-brewclang-relwithdebinfo-build:
<<: *compile_and_test_definition
tags: [macos, "12", arm64]
variables:
CC: /opt/homebrew/opt/llvm/bin/clang
CXX: /opt/homebrew/opt/llvm/bin/clang++