forked from collectd/collectd
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.cirrus.yml
224 lines (213 loc) · 6.55 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
env:
LANG: C
CIRRUS_CLONE_DEPTH: 1
DEFAULT_CONFIG_OPTS: --enable-debug --without-libstatgrab --disable-dependency-tracking
###
# make distcheck and other sanity checks
#
release_ready_task:
container:
image: collectd/ci:buster_amd64
lint_script:
- /checks/check-bashisms.sh
- /checks/check-pod.sh
configure_script:
- ./build.sh
- ./configure $DEFAULT_CONFIG_OPTS
checks_script:
- make -j2 -s distcheck DISTCHECK_CONFIGURE_FLAGS="${DEFAULT_CONFIG_OPTS}"
###
# Default toolchain and build flags used in deb packages, on a range of Debian
# and Ubuntu releases (+ Debian/unstable)
# Most should succeed, and PRs shouldn't break them.
#
debian_default_toolchain_task:
matrix:
- container:
image: collectd/ci:buster_amd64
allow_failures: false
- container:
image: collectd/ci:stretch_amd64
allow_failures: false
- container:
image: collectd/ci:stretch_i386
allow_failures: false
- container:
image: collectd/ci:xenial_amd64
allow_failures: false
- container:
image: collectd/ci:bionic_amd64
allow_failures: false
- container:
image: collectd/ci:focal_amd64
allow_failures: false
# debian/unstable is expected to fail
- allow_failures: true
skip_notifications: true
only_if: $CIRRUS_BRANCH == 'master'
container:
image: collectd/ci:sid_amd64
configure_script:
- ./build.sh
- gcc --version
- >
./configure CC=gcc $DEFAULT_CONFIG_OPTS
CFLAGS="$(dpkg-buildflags --get CFLAGS)"
CPPLAGS="$(dpkg-buildflags --get CPPFLAGS)"
LDFLAGS="$(dpkg-buildflags --get LDFLAGS)"
build_script:
- make -j2 -sk
tests_script:
- VALGRIND_OPTS="--errors-for-leak-kinds=definite" make -j2 -sk check || cat ./test-suite.log || false
- /checks/check-built-plugins.sh
###
# Default toolchain and build flags used in RPM packages, on a range of RedHat
# and Fedora releases (+ Fedora/rawhide)
# Most should succeed, and PRs shouldn't break them.
#
redhat_default_toolchain_task:
matrix:
- allow_failures: true
skip_notifications: true
container:
image: collectd/ci:el7_x86_64 # TODO: fix this platform
- allow_failures: true
skip_notifications: true
container:
image: collectd/ci:fedora28_x86_64
# fedora/rawhide is expected to fail
- allow_failures: true
skip_notifications: true
only_if: $CIRRUS_BRANCH == 'master'
container:
image: collectd/ci:fedora_rawhide_x86_64
configure_script:
- ./build.sh
- gcc --version
- ./configure CC=gcc $DEFAULT_CONFIG_OPTS CFLAGS="$(rpm --eval '%optflags')"
build_script:
- make -j2 -sk
tests_script:
- VALGRIND_OPTS="--errors-for-leak-kinds=definite" make -j2 -sk check || cat ./test-suite.log || false
- /checks/check-built-plugins.sh
###
# Misc non-standard build environment & options on most recent released debian
# version.
# Some are expected to fail, others should always pass
non_standard_toolchains_task:
container:
image: collectd/ci:stretch_amd64
only_if: $CIRRUS_PR == ''
matrix:
# build using clang with default build flags, should always pass
- env:
LABEL: clang
allow_failures: true # TODO: fix this platform
skip_notifications: true
configure_script:
- ./build.sh
- clang --version
- >
./configure CC=clang CXX=clang++
$DEFAULT_CONFIG_OPTS
CFLAGS="$(dpkg-buildflags --get CFLAGS)"
CPPLAGS="$(dpkg-buildflags --get CPPFLAGS)"
LDFLAGS="$(dpkg-buildflags --get LDFLAGS)"
build_script:
- make -j2 -sk
tests_script:
- VALGRIND_OPTS="--errors-for-leak-kinds=definite" make -j2 -sk check || cat ./test-suite.log || false
# build against libstatgrab, should always pass
- env:
LABEL: statgrab
allow_failures: false
skip_notifications: false
configure_script:
- ./build.sh
- gcc --version
- >
./configure --with-libstatgrab --enable-debug
CFLAGS="$(dpkg-buildflags --get CFLAGS)"
CPPLAGS="$(dpkg-buildflags --get CPPFLAGS)"
LDFLAGS="$(dpkg-buildflags --get LDFLAGS)"
build_script:
- make -j2 -sk
tests_script:
- >
for i in cpu disk interface load memory swap users; do
if ! $(ldd ".libs/${i}.so" 2>/dev/null | grep -q 'libstatgrab.so'); then
echo "plugin $i NOT linked against libstatgrab"
exit 1
fi
done
# build using clang with a collection of strict build flags, will most
# probably always fail
- env:
LABEL: clang strict
allow_failures: true
skip_notifications: true
configure_script:
- ./build.sh
- clang --version
- >
./configure CC=clang CXX=clang++
$DEFAULT_CONFIG_OPTS
CFLAGS='-Wall
-Wno-error
-Wextra
-Wformat=2
-Wformat-security
-Wformat-nonliteral
-Wmissing-include-dirs
-Wold-style-definition
-Wpointer-arith
-Winit-self
-Wmissing-prototypes
-Wimplicit-function-declaration
-Wmissing-declarations
-Wstrict-prototypes
-Wmissing-noreturn
-Wshadow
-Wendif-labels
-Wwrite-strings
-Wno-unused-parameter
-Wno-missing-field-initializers
-Wdate-time
-Wnested-externs
-Wno-typedef-redefinition
-Wno-gnu-variable-sized-type-not-at-end'
build_script:
- make -j2 -sk
tests_script:
- VALGRIND_OPTS="--errors-for-leak-kinds=definite" make -j2 -sk check || cat ./test-suite.log || false
###
# Build using a range of compilers, available in debian/unstable. NB: might
# fail because of changes to the distro, not the compiler used.
#
bleeding_edge_compilers_task:
container:
image: collectd/ci:sid_amd64
only_if: $CIRRUS_BRANCH == 'master'
allow_failures: true
skip_notifications: true
env:
matrix:
CC: gcc-7
CC: gcc-8
CC: clang-6.0
CC: clang-7
CC: clang-8
CC: clang-9
configure_script:
- ./build.sh
- $CC --version
- >
./configure CC=$CC
$DEFAULT_CONFIG_OPTS
CFLAGS="$(dpkg-buildflags --get CFLAGS)"
CPPLAGS="$(dpkg-buildflags --get CPPFLAGS)"
LDFLAGS="$(dpkg-buildflags --get LDFLAGS)"
build_script:
- make -j2 -sk
tests_script:
- VALGRIND_OPTS="--errors-for-leak-kinds=definite" make -j2 -sk check || cat ./test-suite.log || false