Babeltrace: checkout sources in a subdirectory
[lttng-ci.git] / jobs / babeltrace.yaml
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:
18 numToKeep: 2
19
20 wrappers:
21 - workspace-cleanup
22 - timestamps
23 - ansicolor:
24 colormap: xterm
25
26 scm:
27 - git:
28 url: git://github.com/{github_user}/{github_name}.git
29 browser: githubweb
30 browser-url: https://github.com/{github_user}/{github_name}
31 branches:
32 - origin/{version}
33 basedir: src/babeltrace
34
35 triggers:
36 - pollscm:
37 cron: "@hourly"
38
39 properties:
40 - github:
41 url: https://github.com/{github_user}/{github_name}
42
43
44 ## Templates
45
46 - babeltrace_version_buildtype_anchor: &babeltrace_version_buildtype_anchor
47 name: 'babeltrace_version_buildtype_anchor'
48 defaults: babeltrace
49
50 project-type: matrix
51 node: 'master' # Applies only to matrix flyweight task
52 axes:
53 - axis:
54 type: slave
55 name: arch
56 values: '{obj:arch}'
57 - axis:
58 type: user-defined
59 name: conf
60 values: '{obj:conf}'
61 - axis:
62 type: user-defined
63 name: build
64 values: '{obj:build}'
65
66 builders:
67 - shell:
68 !include-raw-escape: scripts/babeltrace/build.sh
69
70 - job-template:
71 name: babeltrace_{version}_{buildtype}
72 <<: *babeltrace_version_buildtype_anchor
73 # TODO: Scan for open tasks
74 publishers:
75 - tap:
76 results: 'tap/**/*.log'
77 failed-tests-mark-build-as-failure: true
78 todo-is-failure: false
79 - warnings:
80 console-log-parsers:
81 - 'GNU Make + GNU C Compiler (gcc)'
82 total-thresholds:
83 unstable:
84 total-all: 0
85 total-high: 0
86 total-normal: 0
87 total-low: 0
88 - archive:
89 artifacts: 'build/**'
90 allow-empty: false
91 - ircbot:
92 strategy: new-failure-and-fixed
93 matrix-notifier: only-parent
94 channels:
95 - name: '#lttng'
96
97 - job-template:
98 name: dev_{user}_babeltrace_{version}_{buildtype}
99 <<: *babeltrace_version_buildtype_anchor
100 publishers:
101 - tap:
102 results: 'tap/**/*.log'
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:
109 unstable:
110 total-all: 0
111 total-high: 0
112 total-normal: 0
113 total-low: 0
114
115 - job-template:
116 name: babeltrace_{version}_cppcheck
117 defaults: babeltrace
118
119 triggers:
120 - pollscm:
121 cron: "@daily"
122
123 builders:
124 - shell: |
125 rm -f babeltrace-cppcheck.xml
126 cppcheck --enable=all --xml --xml-version=2 $WORKSPACE 2> babeltrace-cppcheck.xml
127
128 publishers:
129 - archive:
130 artifacts: 'babeltrace-cppcheck.xml'
131 allow-empty: false
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:
145 - pollscm:
146 cron: "@daily"
147
148 builders:
149 - shell:
150 !include-raw-escape: scripts/babeltrace/scan-build.sh
151
152 publishers:
153 - html-publisher:
154 name: 'HTML Report'
155 dir: 'scan-build-archive/'
156 files: 'index.html'
157
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:
179 !include-raw-escape: scripts/common/coverity.sh
180
181 publishers:
182 - workspace-cleanup
183
184 - job-template:
185 name: babeltrace_{version}_pylint
186 defaults: babeltrace
187 node: 'x86-64'
188
189 scm: []
190
191 triggers:
192 - pollscm:
193 cron: "@daily"
194
195 builders:
196 - copyartifact:
197 project: babeltrace_{version}_build/arch=x86-64,build=std,conf=python-bindings
198 which-build: last-successful
199 stable: true
200 filter: 'build/**'
201 target: 'deps/babeltrace'
202 - shell:
203 !include-raw-escape: scripts/babeltrace/pylint.sh
204
205 publishers:
206 - archive:
207 artifacts: 'pep8.out,pylint.out'
208 - violations:
209 pep8:
210 pattern: pep8.out
211 min: 10
212 max: 999
213 unstable: 999
214 pylint:
215 pattern: pylint.out
216 min: 10
217 max: 999
218 unstable: 999
219 - email:
220 recipients: 'ci-notification@lists.lttng.org'
221 notify-every-unstable-build: true
222 send-to-individuals: false
223
224 # Use - in version number since yaml anchor do not support dot
225 - babeltrace_version_glib-2-22-5_anchor: &babeltrace_version_glib-2-22-5_anchor
226 name: 'babeltrace_version_glib_anchor'
227 defaults: babeltrace
228 node: 'x86-64'
229
230 builders:
231 - inject:
232 properties-content: |
233 LD_LIBRARY_PATH=$WORKSPACE/glib-2.22.5/BUILD_RESULT/lib
234 PKG_CONFIG_PATH=$WORKSPACE/glib-2.22.5/BUILD_RESULT/lib/pkgconfig
235 arch=x86-64
236 conf=std
237 build=std
238 - shell: |
239 wget http://ftp.gnome.org/pub/gnome/sources/glib/2.22/glib-2.22.5.tar.gz
240 tar xvf glib-2.22.5.tar.gz
241 cd glib-2.22.5
242 mkdir BUILD_RESULT
243 ./configure --prefix=$WORKSPACE/glib-2.22.5/BUILD_RESULT
244 make -j `nproc`
245 make install
246
247 - shell:
248 !include-raw-escape: scripts/babeltrace/build.sh
249
250 - job-template:
251 name: babeltrace_{version}_glib-2.22.5
252 triggers:
253 - pollscm:
254 cron: "@daily"
255 <<: *babeltrace_version_glib-2-22-5_anchor
256
257 - job-template:
258 name: dev_{user}_babeltrace_{version}_glib-2.22.5
259 <<: *babeltrace_version_glib-2-22-5_anchor
260
261 ## Project
262 - project:
263 name: babeltrace
264 github_user: efficios
265 github_name: babeltrace
266 version:
267 !include: jobs/inc/babeltrace-versions.yaml.inc
268 jobs:
269 - 'babeltrace_{version}_{buildtype}':
270 buildtype: build
271 arch: !!python/tuple [x86-32, x86-64]
272 build: !!python/tuple [std, oot, dist]
273 conf: !!python/tuple [std, static, python-bindings]
274 - 'babeltrace_{version}_{buildtype}':
275 buildtype: clangbuild
276 arch: !!python/tuple [x86-32, x86-64]
277 build: !!python/tuple [clang]
278 conf: !!python/tuple [std, static]
279 - 'babeltrace_{version}_{buildtype}':
280 buildtype: portbuild
281 arch: !!python/tuple [armhf, arm64, powerpc, ppc64el]
282 build: !!python/tuple [std]
283 conf: !!python/tuple [std, static, python-bindings]
284 - 'babeltrace_{version}_{buildtype}':
285 buildtype: solarisbuild
286 arch: !!python/tuple [solaris10, solaris11]
287 build: !!python/tuple [std]
288 conf: !!python/tuple [std, static]
289 version:
290 - stable-1.3
291 - master
292 - 'babeltrace_{version}_{buildtype}':
293 buildtype: macosxbuild
294 arch: !!python/tuple [macosx]
295 build: !!python/tuple [std]
296 conf: !!python/tuple [std, static]
297 version:
298 - master
299 - 'babeltrace_{version}_cppcheck'
300 - 'babeltrace_{version}_scan-build'
301 - 'babeltrace_{version}_pylint'
302 - 'babeltrace_{version}_coverity':
303 version: master
304 - 'babeltrace_{version}_glib-2.22.5':
305 version: master
306 - 'dev_{user}_babeltrace_{version}_glib-2.22.5':
307 user: jgalar
308 github_user: jgalar
309 github_name: babeltrace
310 version:
311 - master-staging
312 - 'dev_{user}_babeltrace_{version}_{buildtype}':
313 user: jgalar
314 github_user: jgalar
315 github_name: babeltrace
316 buildtype: build
317 version:
318 - master-staging
319 - stable-1.2-staging
320 - stable-1.3-staging
321 arch: !!python/tuple [x86-32, x86-64]
322 build: !!python/tuple [std, oot, dist]
323 conf: !!python/tuple [std, static, python-bindings]
324
This page took 0.036594 seconds and 5 git commands to generate.