-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy path.cirrus.yml
280 lines (236 loc) · 8.58 KB
/
.cirrus.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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
environment:
CCACHE_BASEDIR: $CIRRUS_WORKING_DIR
clang9_zeek31_ubuntu_debug_task:
trigger_type: manual
container:
dockerfile: ci/Dockerfile
docker_arguments:
- zeek_packages: zeek zeek-core-dev
cpu: 8
memory: 16G
timeout_in: 120m
ccache_cache:
folder: /var/spool/ccache
fingerprint_script: echo $CIRRUS_TASK_NAME-$CIRRUS_OS
env:
CCACHE_DIR: /var/spool/ccache
CCACHE_COMPRESS: 1
LD_LIBRARY_PATH: /usr/lib/llvm-9/lib/clang/9.0.0/lib/linux/
# Pull tags as well since by default Cirrus CI does not fetch them, but they
# are needed for `git describe` used in `scripts/autogen-version`. We also
# pull submodules here.
update_git_script:
- git fetch --tags
- git submodule update --recursive --init
# We currently run the build with sanitizers against llvm-9 since llvm-10 still triggers some warnings from inside LLVM.
#
# TODO(bbannier): Switch this job to llvm-10.
configure_script: ./ci/run-ci -b build configure debug --cxx-compiler clang++-9 --with-zeek /opt/zeek --clang-format `which clang-format-10` --clang-tidy `which clang-tidy-10` --rpath /usr/lib/llvm-9/lib/clang/9.0.0/lib/linux/ --zeek-ld-preload /usr/lib/llvm-9/lib/clang/9.0.0/lib/linux/libclang_rt.asan-x86_64.so
build_script: ./ci/run-ci -b build build
test_build_script: ./ci/run-ci -b build test-build
test_code_script: ./ci/run-ci -b build test-code
install_script: ./ci/run-ci -b build install
always:
ci_artifacts:
path: artifacts
junit_artifacts:
path: artifacts/diag.xml
type: text/xml
format: junit
clang10_zeek31_ubuntu_release_task:
trigger_type: manual
container:
dockerfile: ci/Dockerfile
docker_arguments:
- zeek_packages: zeek-lts zeek-lts-core-dev
cpu: 8
memory: 16G
timeout_in: 120m
ccache_cache:
folder: /var/spool/ccache
fingerprint_script: echo $CIRRUS_TASK_NAME-$CIRRUS_OS
env:
CCACHE_DIR: /var/spool/ccache
CCACHE_COMPRESS: 1
# Pull tags as well since by default Cirrus CI does not fetch them, but they
# are needed for `git describe` used in `scripts/autogen-version`. We also
# pull submodules here.
update_git_script:
- git fetch --tags
- git submodule update --recursive --init
configure_script: ./ci/run-ci -b build configure release --cxx-compiler clang++-10 --with-zeek /opt/zeek --clang-format `which clang-format-10` --clang-tidy `which clang-tidy-10`
build_script: ./ci/run-ci -b build build
test_build_script: ./ci/run-ci -b build test-build
install_script: ./ci/run-ci -b build install
cleanup_script: ./ci/run-ci -b build cleanup
test_install_script: ./ci/run-ci -b build test-install
always:
ci_artifacts:
path: artifacts
junit_artifacts:
path: artifacts/diag.xml
type: text/xml
format: junit
clang9_zeek30_ubuntu_release_task:
trigger_type: manual
container:
dockerfile: ci/Dockerfile
docker_arguments:
- zeek_packages: zeek-lts zeek-lts-core-dev
cpu: 8
memory: 16G
timeout_in: 120m
ccache_cache:
folder: /var/spool/ccache
fingerprint_script: echo $CIRRUS_TASK_NAME-$CIRRUS_OS
env:
CCACHE_DIR: /var/spool/ccache
CCACHE_COMPRESS: 1
# Pull tags as well since by default Cirrus CI does not fetch them, but they
# are needed for `git describe` used in `scripts/autogen-version`. We also
# pull submodules here.
update_git_script:
- git fetch --tags
- git submodule update --recursive --init
configure_script: ./ci/run-ci -b build configure release --cxx-compiler clang++-9 --with-zeek /opt/zeek --clang-format `which clang-format-10` --clang-tidy `which clang-tidy-10`
build_script: ./ci/run-ci -b build build
install_script: ./ci/run-ci -b build install
cleanup_script: ./ci/run-ci -b build cleanup
test_install_script: ./ci/run-ci -b build test-install
always:
ci_artifacts:
path: artifacts
junit_artifacts:
path: artifacts/diag.xml
type: text/xml
format: junit
gcc9_ubuntu_release_no_jit_task:
trigger_type: manual
container:
dockerfile: ci/Dockerfile
docker_arguments:
- zeek_packages: zeek-lts zeek-lts-core-dev
cpu: 8
memory: 16G
timeout_in: 120m
ccache_cache:
folder: /var/spool/ccache
fingerprint_script: echo $CIRRUS_TASK_NAME-$CIRRUS_OS
env:
CCACHE_DIR: /var/spool/ccache
CCACHE_COMPRESS: 1
# Pull tags as well since by default Cirrus CI does not fetch them, but they
# are needed for `git describe` used in `scripts/autogen-version`. We also
# pull submodules here.
update_git_script:
- git fetch --tags
- git submodule update --recursive --init
configure_script: ./ci/run-ci -b build configure release --cxx-compiler g++-9 --disable-jit
build_script: ./ci/run-ci -b build build
install_script: ./ci/run-ci -b build install
cleanup_script: ./ci/run-ci -b build cleanup
test_install_script: ./ci/run-ci -b build test-install-nojit
always:
ci_artifacts:
path: artifacts
junit_artifacts:
path: artifacts/diag.xml
type: text/xml
format: junit
macos_release_task:
trigger_type: manual
osx_instance:
image: catalina-base
ccache_cache:
folder: /tmp/ccache
fingerprint_script: echo $CIRRUS_TASK_NAME-$CIRRUS_OS
# Pull tags as well since by default Cirrus CI does not fetch them, but they
# are needed for `git describe` used in `scripts/autogen-version`. We also
# pull submodules here.
update_git_script:
- git fetch --tags
- git submodule update --recursive --init
install_dependencies_script:
- brew install llvm bison flex cmake ninja [email protected] sphinx-doc ccache zeek
- pip3 install btest sphinx_rtd_theme
configure_script:
- ./configure --generator=Ninja --with-cxx-compiler=/usr/local/opt/llvm/bin/clang++ --with-bison=/usr/local/opt/bison --with-flex=/usr/local/opt/flex --enable-ccache
build_script:
- ninja -C build all check
test_build_script:
- (cd tests && btest -j)
docker_ubuntu_19_10_task:
trigger_type: manual
container:
dockerfile: docker/Dockerfile.ubuntu-19.10
cpu: 8
memory: 16G
timeout_in: 120m
ccache_cache:
folder: /var/spool/cache
fingerprint_script: echo $CIRRUS_TASK_NAME-$CIRRUS_OS
env:
CCACHE_DIR: /var/spool/ccache
CCACHE_COMPRESS: 1
# Pull tags as well since by default Cirrus CI does not fetch them, but they
# are needed for `git describe` used in `scripts/autogen-version`. We also
# pull submodules here.
update_git_script:
- git fetch --tags
- git submodule update --recursive --init
configure_script:
- ./configure --generator=Ninja --enable-ccache --prefix=/opt/spicy --with-zeek=/opt/zeek
build_script:
- ninja -C build install -j5
test_script:
- cd tests && SPICY_INSTALLATION_DIRECTORY=/opt/spicy btest -a installation -j -d
docker_alpine_3_11_task:
trigger_type: manual
container:
dockerfile: docker/Dockerfile.alpine-3.11
cpu: 8
memory: 16G
timeout_in: 120m
ccache_cache:
folder: /var/spool/cache
fingerprint_script: echo $CIRRUS_TASK_NAME-$CIRRUS_OS
env:
CCACHE_DIR: /var/spool/ccache
CCACHE_COMPRESS: 1
# Pull tags as well since by default Cirrus CI does not fetch them, but they
# are needed for `git describe` used in `scripts/autogen-version`. We also
# pull submodules here.
update_git_script:
- git fetch --tags
- git submodule update --recursive --init
configure_script:
- LDFLAGS="-lucontext" ./configure --generator=Ninja --enable-ccache --prefix=/opt/spicy --with-zeek=/opt/zeek --with-cxx-compiler=clang++
build_script:
- ninja -C build install -j5
test_script:
- cd tests && SPICY_INSTALLATION_DIRECTORY=/opt/spicy btest -a installation -j -d
docker_centos_8_task:
trigger_type: manual
container:
dockerfile: docker/Dockerfile.centos-8
cpu: 8
memory: 16G
timeout_in: 120m
ccache_cache:
folder: /var/spool/cache
fingerprint_script: echo $CIRRUS_TASK_NAME-$CIRRUS_OS
env:
CCACHE_DIR: /var/spool/ccache
CCACHE_COMPRESS: 1
# Pull tags as well since by default Cirrus CI does not fetch them, but they
# are needed for `git describe` used in `scripts/autogen-version`. We also
# pull submodules here.
update_git_script:
- git fetch --tags
- git submodule update --recursive --init
configure_script:
- ./configure --generator=Ninja --enable-ccache --prefix=/opt/spicy --with-zeek=/opt/zeek --with-cxx-compiler=clang++
build_script:
- ninja -C build install -j5
test_script:
- cd tests && SPICY_INSTALLATION_DIRECTORY=/opt/spicy btest -a installation -j -d