jjb: fix lttng-tools build script to run unit tests for 2.8
[lttng-ci.git] / jobs / babeltrace.yaml
CommitLineData
890bff23
MJ
1- defaults:
2 name: babeltrace
3 description: |
4 The Babeltrace project provides trace read and write libraries, as well
5 as a trace converter. Plugins can be created for any trace format to
6 allow its conversion to/from another trace format.
7
8 The main format expected to be converted to/from is the Common Trace
9 Format (CTF). The default input format of the "babeltrace" command is
10 CTF, and its default output format is a human-readable text log. The
11 "babeltrace-log" command converts from a text log to a CTF trace.
12
13 <p>Job is managed by Jenkins Job Builder.</p>
14
15 project-type: freestyle
16
17 logrotate:
890bff23 18 numToKeep: 2
890bff23
MJ
19
20 wrappers:
21 - workspace-cleanup
22 - timestamps
6cf22a3a
MJ
23 - ansicolor:
24 colormap: xterm
890bff23
MJ
25
26 scm:
27 - git:
4f827afb 28 url: git://github.com/{github_user}/{github_name}.git
890bff23 29 browser: githubweb
4f827afb 30 browser-url: https://github.com/{github_user}/{github_name}
890bff23
MJ
31 branches:
32 - origin/{version}
e6be9fb0 33 basedir: src/babeltrace
890bff23
MJ
34
35 triggers:
6cf22a3a
MJ
36 - pollscm:
37 cron: "@hourly"
890bff23
MJ
38
39 properties:
40 - github:
4f827afb 41 url: https://github.com/{github_user}/{github_name}
890bff23
MJ
42
43
44## Templates
06264d10
JR
45
46- babeltrace_version_buildtype_anchor: &babeltrace_version_buildtype_anchor
47 name: 'babeltrace_version_buildtype_anchor'
890bff23
MJ
48 defaults: babeltrace
49
50 project-type: matrix
ca8c6144 51 node: 'master' # Applies only to matrix flyweight task
890bff23
MJ
52 axes:
53 - axis:
54 type: slave
55 name: arch
56 values: '{obj:arch}'
57 - axis:
58 type: user-defined
59 name: conf
87e41bca 60 values: '{obj:conf}'
890bff23
MJ
61 - axis:
62 type: user-defined
63 name: build
9d0846f3 64 values: '{obj:build}'
890bff23
MJ
65
66 builders:
67 - shell:
ef63064f 68 !include-raw-escape: scripts/babeltrace/build.sh
890bff23 69
06264d10
JR
70- job-template:
71 name: babeltrace_{version}_{buildtype}
72 <<: *babeltrace_version_buildtype_anchor
890bff23
MJ
73 # TODO: Scan for open tasks
74 publishers:
75 - tap:
e6be9fb0 76 results: 'tap/**/*.log'
890bff23 77 failed-tests-mark-build-as-failure: true
95654431 78 todo-is-failure: false
890bff23
MJ
79 - warnings:
80 console-log-parsers:
81 - 'GNU Make + GNU C Compiler (gcc)'
82 total-thresholds:
51ca880a 83 unstable:
d2c76ee5
MJ
84 total-all: 0
85 total-high: 0
86 total-normal: 0
87 total-low: 0
890bff23
MJ
88 - archive:
89 artifacts: 'build/**'
90 allow-empty: false
1f6ad2ae 91 - ircbot:
95654431 92 strategy: new-failure-and-fixed
1f6ad2ae
MJ
93 matrix-notifier: only-parent
94 channels:
95 - name: '#lttng'
890bff23 96
4f827afb
JR
97- job-template:
98 name: dev_{user}_babeltrace_{version}_{buildtype}
99 <<: *babeltrace_version_buildtype_anchor
100 publishers:
101 - tap:
e6be9fb0 102 results: 'tap/**/*.log'
4f827afb
JR
103 failed-tests-mark-build-as-failure: true
104 todo-is-failure: false
105 - warnings:
106 console-log-parsers:
107 - 'GNU Make + GNU C Compiler (gcc)'
108 total-thresholds:
51ca880a 109 unstable:
d2c76ee5
MJ
110 total-all: 0
111 total-high: 0
112 total-normal: 0
113 total-low: 0
4f827afb 114
890bff23
MJ
115- job-template:
116 name: babeltrace_{version}_cppcheck
117 defaults: babeltrace
118
119 triggers:
6cf22a3a
MJ
120 - pollscm:
121 cron: "@daily"
890bff23
MJ
122
123 builders:
124 - shell: |
125 rm -f babeltrace-cppcheck.xml
73778992 126 cppcheck --enable=all --xml --xml-version=2 $WORKSPACE/src/babeltrace 2> babeltrace-cppcheck.xml
890bff23
MJ
127
128 publishers:
129 - archive:
130 artifacts: 'babeltrace-cppcheck.xml'
131 allow-empty: false
890bff23
MJ
132 - cppcheck:
133 pattern: 'babeltrace-cppcheck.xml'
134 - email:
135 recipients: 'ci-notification@lists.lttng.org'
136 notify-every-unstable-build: true
137 send-to-individuals: false
138
139- job-template:
140 name: babeltrace_{version}_scan-build
141 defaults: babeltrace
142 node: 'x86-64'
143
144 triggers:
6cf22a3a
MJ
145 - pollscm:
146 cron: "@daily"
890bff23
MJ
147
148 builders:
149 - shell:
ef63064f 150 !include-raw-escape: scripts/babeltrace/scan-build.sh
890bff23
MJ
151
152 publishers:
153 - html-publisher:
154 name: 'HTML Report'
155 dir: 'scan-build-archive/'
156 files: 'index.html'
157
6cf22a3a
MJ
158- job-template:
159 name: babeltrace_{version}_coverity
160 defaults: babeltrace
161 node: 'x86-64'
162
163 triggers:
164 - pollscm:
165 cron: "@daily"
166
167 wrappers:
168 - workspace-cleanup
169 - timestamps
170 - ansicolor:
171 colormap: xterm
172 - credentials-binding:
173 - username-password-separated:
174 credential-id: babeltrace_coverity_token
175 username: COVERITY_SCAN_PROJECT_NAME
176 password: COVERITY_SCAN_TOKEN
177 builders:
178 - shell:
ef63064f 179 !include-raw-escape: scripts/common/coverity.sh
6cf22a3a
MJ
180
181 publishers:
182 - workspace-cleanup
73778992
MJ
183 - archive:
184 artifacts: 'analysis-results.tgz,cov-int/**'
185 allow-empty: false
890bff23
MJ
186
187- job-template:
188 name: babeltrace_{version}_pylint
189 defaults: babeltrace
190 node: 'x86-64'
191
192 scm: []
193
194 triggers:
6cf22a3a
MJ
195 - pollscm:
196 cron: "@daily"
890bff23
MJ
197
198 builders:
199 - copyartifact:
ce1e1df3 200 project: babeltrace_{version}_build/arch=x86-64,build=std,conf=python-bindings
890bff23
MJ
201 which-build: last-successful
202 stable: true
203 filter: 'build/**'
b0afcb47 204 target: 'deps/babeltrace'
890bff23 205 - shell:
ef63064f 206 !include-raw-escape: scripts/babeltrace/pylint.sh
890bff23
MJ
207
208 publishers:
209 - archive:
210 artifacts: 'pep8.out,pylint.out'
890bff23
MJ
211 - violations:
212 pep8:
213 pattern: pep8.out
214 min: 10
215 max: 999
216 unstable: 999
217 pylint:
218 pattern: pylint.out
219 min: 10
220 max: 999
221 unstable: 999
222 - email:
223 recipients: 'ci-notification@lists.lttng.org'
224 notify-every-unstable-build: true
225 send-to-individuals: false
226
556e87cc
JR
227# Use - in version number since yaml anchor do not support dot
228- babeltrace_version_glib-2-22-5_anchor: &babeltrace_version_glib-2-22-5_anchor
229 name: 'babeltrace_version_glib_anchor'
230 defaults: babeltrace
231 node: 'x86-64'
232
233 builders:
234 - inject:
235 properties-content: |
236 LD_LIBRARY_PATH=$WORKSPACE/glib-2.22.5/BUILD_RESULT/lib
237 PKG_CONFIG_PATH=$WORKSPACE/glib-2.22.5/BUILD_RESULT/lib/pkgconfig
238 arch=x86-64
239 conf=std
240 build=std
241 - shell: |
242 wget http://ftp.gnome.org/pub/gnome/sources/glib/2.22/glib-2.22.5.tar.gz
243 tar xvf glib-2.22.5.tar.gz
244 cd glib-2.22.5
245 mkdir BUILD_RESULT
246 ./configure --prefix=$WORKSPACE/glib-2.22.5/BUILD_RESULT
247 make -j `nproc`
248 make install
249
250 - shell:
251 !include-raw-escape: scripts/babeltrace/build.sh
252
253- job-template:
254 name: babeltrace_{version}_glib-2.22.5
255 triggers:
256 - pollscm:
257 cron: "@daily"
258 <<: *babeltrace_version_glib-2-22-5_anchor
259
260- job-template:
261 name: dev_{user}_babeltrace_{version}_glib-2.22.5
262 <<: *babeltrace_version_glib-2-22-5_anchor
890bff23 263
890bff23
MJ
264## Project
265- project:
266 name: babeltrace
4f827afb
JR
267 github_user: efficios
268 github_name: babeltrace
890bff23 269 version:
ecf9997a
MJ
270 - stable-1.3
271 - stable-1.4
272 - master
890bff23 273 jobs:
57ae8ff4
MJ
274 - 'babeltrace_{version}_{buildtype}':
275 buildtype: build
890bff23 276 arch: !!python/tuple [x86-32, x86-64]
9d0846f3 277 build: !!python/tuple [std, oot, dist]
87e41bca 278 conf: !!python/tuple [std, static, python-bindings]
0628a9d8
MJ
279 - 'babeltrace_{version}_{buildtype}':
280 buildtype: clangbuild
281 arch: !!python/tuple [x86-32, x86-64]
282 build: !!python/tuple [clang]
283 conf: !!python/tuple [std, static]
57ae8ff4
MJ
284 - 'babeltrace_{version}_{buildtype}':
285 buildtype: portbuild
c56b9301 286 arch: !!python/tuple [armhf, arm64, powerpc, ppc64el]
9d0846f3 287 build: !!python/tuple [std]
87e41bca
MJ
288 conf: !!python/tuple [std, static, python-bindings]
289 - 'babeltrace_{version}_{buildtype}':
290 buildtype: solarisbuild
291 arch: !!python/tuple [solaris10, solaris11]
292 build: !!python/tuple [std]
293 conf: !!python/tuple [std, static]
221450b6
MJ
294 - 'babeltrace_{version}_{buildtype}':
295 buildtype: macosxbuild
296 arch: !!python/tuple [macosx]
297 build: !!python/tuple [std]
298 conf: !!python/tuple [std, static]
299 version:
ecf9997a 300 - stable-1.4
221450b6 301 - master
890bff23
MJ
302 - 'babeltrace_{version}_cppcheck'
303 - 'babeltrace_{version}_scan-build'
304 - 'babeltrace_{version}_pylint'
6cf22a3a
MJ
305 - 'babeltrace_{version}_coverity':
306 version: master
556e87cc
JR
307 - 'babeltrace_{version}_glib-2.22.5':
308 version: master
309 - 'dev_{user}_babeltrace_{version}_glib-2.22.5':
310 user: jgalar
311 github_user: jgalar
312 github_name: babeltrace
313 version:
314 - master-staging
4f827afb
JR
315 - 'dev_{user}_babeltrace_{version}_{buildtype}':
316 user: jgalar
317 github_user: jgalar
318 github_name: babeltrace
319 buildtype: build
320 version:
321 - master-staging
4f827afb 322 - stable-1.3-staging
ecf9997a 323 - stable-1.4-staging
4f827afb
JR
324 arch: !!python/tuple [x86-32, x86-64]
325 build: !!python/tuple [std, oot, dist]
326 conf: !!python/tuple [std, static, python-bindings]
890bff23 327
This page took 0.035821 seconds and 4 git commands to generate.