jjb: lttng-ust: remove unsupported liburcu stable-0.12
[lttng-ci.git] / jobs / lttng-ust.yaml
CommitLineData
2b68721a
MJ
1- defaults:
2 name: lttng-ust
3 description: |
4 LTTng-UST, the Linux Trace Toolkit Next Generation Userspace Tracer, is a
5 port of the low-overhead tracing capabilities of the LTTng kernel tracer
6 to user-space. The library "liblttng-ust" enables tracing of
7 applications and libraries.
8
9 <p>Job is managed by Jenkins Job Builder.</p>
10
11 project-type: freestyle
12
2b68721a 13 wrappers:
2356937a
MJ
14 - ansicolor: &lttng-ust_wrapper_ansicolor_defaults
15 colormap: xterm
16 - timeout: &lttng-ust_wrapper_timeout_defaults
17 timeout: 20
18 fail: true
19 type: no-activity
20 write-description: "<h1 style=\"color:red\">This build failed due to timeout.</h1>"
2b68721a 21 - timestamps
2356937a 22 - workspace-cleanup
2b68721a
MJ
23
24 scm:
25 - git:
4d27af8f 26 url: https://github.com/{github_user}/{github_name}.git
2b68721a 27 browser: githubweb
51ca880a 28 browser-url: https://github.com/{github_user}/{github_name}
2b68721a
MJ
29 branches:
30 - origin/{version}
1f4fba8c 31 basedir: src/lttng-ust
89b9225e 32 skip-tag: true
2b68721a
MJ
33
34 triggers:
35 - pollscm:
36 cron: "@hourly"
37
38 properties:
69f05d59
MJ
39 - inject:
40 properties-content: |
41 PROJECT_NAME=lttng-ust
edf72710 42 - build-discarder:
3b228cdd
MJ
43 num-to-keep: 10
44 artifact-num-to-keep: 2
2b68721a 45 - github:
51ca880a 46 url: https://github.com/{github_user}/{github_name}
2b68721a
MJ
47
48
a3bc0379 49## Anchors
2356937a
MJ
50- lttng-ust_matrix_axes_defaults: &lttng-ust_matrix_axes_defaults
51 name: 'lttng-ust_matrix_axes_defaults'
2b68721a 52 project-type: matrix
ca8c6144 53 node: 'master' # Applies only to matrix flyweight task
2356937a 54 execution-strategy: &lttng-ust_matrix_execution-strategy_defaults
568b5cbd 55 combination-filter: '{filter}'
2356937a
MJ
56 touchstone:
57 expr: '{touchstone}'
58 result: unstable
2b68721a 59 axes:
94a6d1fb 60 - axis: &lttng-ust_matrix_axis_platform
2b68721a 61 type: slave
94a6d1fb
MJ
62 name: platform
63 values: '{obj:platforms}'
2356937a 64 - axis: &lttng-ust_matrix_axis_conf
2b68721a
MJ
65 type: user-defined
66 name: conf
2356937a
MJ
67 values: '{obj:confs}'
68 - axis: &lttng-ust_matrix_axis_build
2b68721a
MJ
69 type: user-defined
70 name: build
2356937a
MJ
71 values: '{obj:builds}'
72 - axis: &lttng-ust_matrix_axis_liburcu_version
73 type: user-defined
74 name: liburcu_version
75 values: '{obj:liburcu_versions}'
2b68721a 76
2356937a
MJ
77- lttng-ust_matrix_axes_gerrit_lttng-tools: &lttng-ust_matrix_axes_gerrit_lttng-tools
78 name: 'lttng-ust_matrix_axes_gerrit_lttng-tools'
81056679
JR
79 project-type: matrix
80 node: 'master' # Applies only to matrix flyweight task
2356937a 81 execution-strategy: *lttng-ust_matrix_execution-strategy_defaults
81056679 82 axes:
94a6d1fb 83 - axis: *lttng-ust_matrix_axis_platform
2356937a
MJ
84 - axis: *lttng-ust_matrix_axis_conf
85 - axis: *lttng-ust_matrix_axis_build
86
87- lttng-ust_steps_copyartifact_defaults:
88 name: 'lttng-ust_steps_copyartifact_defaults'
89 steps:
90 - copyartifact: &lttng-ust_steps_copyartifact_defaults
91 project: ''
92 which-build: last-successful
93 stable: false
94 filter: 'build/**'
95 target: 'deps'
96 do-not-fingerprint: true
81056679 97
2356937a
MJ
98- lttng-ust_builders_defaults: &lttng-ust_builders_defaults
99 name: 'lttng-ust_builders_defaults'
2b68721a 100 builders:
2356937a
MJ
101 # Generate a properties file to add additionnal env
102 - shell: |
103 #!/bin/bash
104 set -exu
105 # Select the liburcu conf based on the current conf
106 case "$conf" in
107 debug-rcu|tls_fallback)
108 liburcu_conf=$conf
109 ;;
110 *)
111 liburcu_conf=std
112 ;;
113 esac
114 echo "liburcu_conf=$liburcu_conf" > env.properties
115
116 # Inject the additionnal env early to use them in the copyartifact step
117 - inject:
118 properties-file: env.properties
119
120 - copyartifact:
121 <<: *lttng-ust_steps_copyartifact_defaults
94a6d1fb 122 project: '{job_prefix}liburcu_${{liburcu_version}}_{buildtype}/platform=${{platform}},conf=${{liburcu_conf}},build=std'
2356937a
MJ
123
124 # Run the build
2b68721a 125 - shell:
51c9c62d
MJ
126 !include-raw-escape:
127 - scripts/common/print.sh
128 - scripts/lttng-ust/build.sh
2b68721a 129
2356937a
MJ
130- lttng-ust_builders_gerrit_lttng-tools: &lttng-ust_builders_gerrit_lttng-tools
131 name: 'lttng-ust_builders_gerrit_lttng-tools'
132
7c50e5dd 133 builders:
2356937a
MJ
134 # Generate a properties file to add additionnal env
135 - shell: |
136 #!/bin/bash
137 set -exu
138 # Select the liburcu conf based on the current conf
139 case "$conf" in
140 debug-rcu|tls_fallback)
141 liburcu_conf=$conf
142 ;;
143 *)
144 liburcu_conf=std
145 ;;
146 esac
147 echo "liburcu_conf=$liburcu_conf" >> env.properties
148 # Select the liburcu version based on the gerrit branch
149 case "$GERRIT_BRANCH" in
150 master)
151 liburcu_version=master
152 ;;
153 *)
154 liburcu_version={liburcu_version}
155 ;;
156 esac
157 echo "liburcu_version=$liburcu_version" >> env.properties
158
159 # Inject the additionnal env early to use them in the copyartifact step
160 - inject:
161 properties-file: env.properties
162
7c50e5dd 163 - copyartifact:
2356937a 164 <<: *lttng-ust_steps_copyartifact_defaults
94a6d1fb 165 project: 'liburcu_${{liburcu_version}}_{buildtype}/platform=${{platform}},conf=${{liburcu_conf}},build=std'
2356937a
MJ
166
167 - copyartifact:
168 <<: *lttng-ust_steps_copyartifact_defaults
94a6d1fb 169 project: 'babeltrace_{babeltrace_version}_{buildtype}/platform=${{platform}},conf=std,build=std'
2356937a
MJ
170
171 - shell: |
172 #!/bin/bash
173 set -exu
174 git clone -b "$GERRIT_BRANCH" https://review.lttng.org/lttng-tools src/lttng-tools
7c50e5dd
JR
175
176 - shell:
177 !include-raw-escape:
178 - scripts/common/print.sh
179 - scripts/lttng-ust/build.sh
2356937a 180
7c50e5dd
JR
181 - shell:
182 !include-raw-escape:
183 - scripts/lttng-tools/gerrit-install-deps.sh
2356937a 184
7c50e5dd
JR
185 - shell:
186 !include-raw-escape:
187 - scripts/common/print.sh
188 - scripts/lttng-tools/build.sh
a3bc0379 189
2356937a
MJ
190- lttng-ust_publishers_defaults: &lttng-ust_publishers_defaults
191 name: 'lttng-ust_publishers_defaults'
2b68721a 192 publishers:
2356937a 193 - tap: &lttng-ust_publisher_tap_defaults
1f4fba8c 194 results: 'tap/**/*.log'
1d56e325 195 fail-if-no-results: true
2b68721a 196 failed-tests-mark-build-as-failure: true
95654431 197 todo-is-failure: false
2356937a
MJ
198 - raw: &lttng-ust_publisher_warnings-ng_defaults
199 xml: |
200 <io.jenkins.plugins.analysis.core.steps.IssuesRecorder plugin="warnings-ng">
201 <analysisTools>
202 <io.jenkins.plugins.analysis.warnings.Gcc4>
203 <id/>
204 <name/>
205 <jenkins plugin="plugin-util-api"/>
206 <pattern/>
207 <reportEncoding/>
208 <skipSymbolicLinks>false</skipSymbolicLinks>
209 </io.jenkins.plugins.analysis.warnings.Gcc4>
210 <io.jenkins.plugins.analysis.warnings.Clang>
211 <id/>
212 <name/>
213 <jenkins plugin="plugin-util-api"/>
214 <pattern/>
215 <reportEncoding/>
216 <skipSymbolicLinks>false</skipSymbolicLinks>
217 </io.jenkins.plugins.analysis.warnings.Clang>
218 </analysisTools>
219 <sourceCodeEncoding/>
220 <sourceDirectory/>
221 <sourceDirectories/>
222 <ignoreQualityGate>false</ignoreQualityGate>
223 <ignoreFailedBuilds>true</ignoreFailedBuilds>
224 <failOnError>false</failOnError>
225 <healthy>0</healthy>
226 <unhealthy>0</unhealthy>
227 <minimumSeverity plugin="analysis-model-api">
228 <name>LOW</name>
229 </minimumSeverity>
230 <filters/>
231 <isEnabledForFailure>true</isEnabledForFailure>
232 <isAggregatingResults>true</isAggregatingResults>
233 <isBlameDisabled>false</isBlameDisabled>
234 <skipPublishingChecks>true</skipPublishingChecks>
235 <publishAllIssues>false</publishAllIssues>
236 <qualityGates>
237 <io.jenkins.plugins.analysis.core.util.QualityGate>
238 <threshold>1</threshold>
239 <type>TOTAL</type>
240 <status>WARNING</status>
241 </io.jenkins.plugins.analysis.core.util.QualityGate>
242 </qualityGates>
243 <trendChartType>AGGREGATION_TOOLS</trendChartType>
244 <scm/>
245 </io.jenkins.plugins.analysis.core.steps.IssuesRecorder>
246 - archive: &lttng-ust_publisher_archive_defaults
3579dc14 247 artifacts: 'build/**,tap/**'
2b68721a 248 allow-empty: false
2356937a
MJ
249 - workspace-cleanup: &lttng-ust_publisher_workspace-cleanup_defaults
250 clean-if:
251 - failure: false
252 - email-ext: &lttng-ust_publisher_email-ext_defaults
68fff945
JR
253 recipients: '{obj:email_to}'
254 reply-to: ci-notification@lists.lttng.org
255 always: false
256 unstable: false
257 first-failure: true
258 first-unstable: true
259 not-built: false
260 aborted: false
261 regression: false
262 failure: false
263 second-failure: false
264 improvement: false
265 still-failing: false
266 success: false
267 fixed: false
268 fixed-unhealthy: true
269 still-unstable: false
270 pre-build: false
271 matrix-trigger: only-parent
272 send-to:
273 - recipients
2b68721a 274
2356937a
MJ
275- lttng-ust_publishers_gerrit: &lttng-ust_publishers_gerrit
276 name: 'lttng-ust_publishers_gerrit'
277 publishers:
278 - tap: *lttng-ust_publisher_tap_defaults
279 # Fail job on any compiler warnings
280 - raw:
281 xml: |
282 <io.jenkins.plugins.analysis.core.steps.IssuesRecorder plugin="warnings-ng">
283 <analysisTools>
284 <io.jenkins.plugins.analysis.warnings.Gcc4>
285 <id/>
286 <name/>
287 <jenkins plugin="plugin-util-api"/>
288 <pattern/>
289 <reportEncoding/>
290 <skipSymbolicLinks>false</skipSymbolicLinks>
291 </io.jenkins.plugins.analysis.warnings.Gcc4>
292 <io.jenkins.plugins.analysis.warnings.Clang>
293 <id/>
294 <name/>
295 <jenkins plugin="plugin-util-api"/>
296 <pattern/>
297 <reportEncoding/>
298 <skipSymbolicLinks>false</skipSymbolicLinks>
299 </io.jenkins.plugins.analysis.warnings.Clang>
300 </analysisTools>
301 <sourceCodeEncoding/>
302 <sourceDirectory/>
303 <sourceDirectories/>
304 <ignoreQualityGate>false</ignoreQualityGate>
305 <ignoreFailedBuilds>true</ignoreFailedBuilds>
306 <failOnError>false</failOnError>
307 <healthy>0</healthy>
308 <unhealthy>0</unhealthy>
309 <minimumSeverity plugin="analysis-model-api">
310 <name>LOW</name>
311 </minimumSeverity>
312 <filters/>
313 <isEnabledForFailure>true</isEnabledForFailure>
314 <isAggregatingResults>true</isAggregatingResults>
315 <isBlameDisabled>false</isBlameDisabled>
316 <skipPublishingChecks>true</skipPublishingChecks>
317 <publishAllIssues>false</publishAllIssues>
318 <qualityGates>
319 <io.jenkins.plugins.analysis.core.util.QualityGate>
320 <threshold>1</threshold>
321 <type>TOTAL</type>
322 <status>FAILED</status>
323 </io.jenkins.plugins.analysis.core.util.QualityGate>
324 </qualityGates>
325 <trendChartType>AGGREGATION_TOOLS</trendChartType>
326 <scm/>
327 </io.jenkins.plugins.analysis.core.steps.IssuesRecorder>
328 - archive: *lttng-ust_publisher_archive_defaults
329 - workspace-cleanup: *lttng-ust_publisher_workspace-cleanup_defaults
74cc8870
MJ
330
331
2356937a 332## Templates
74cc8870
MJ
333- job-template:
334 name: '{job_prefix}lttng-ust_{version}_{buildtype}'
335 defaults: lttng-ust
336
2356937a
MJ
337 <<: *lttng-ust_matrix_axes_defaults
338 <<: *lttng-ust_builders_defaults
339 <<: *lttng-ust_publishers_defaults
340
74cc8870 341
a3bc0379
MJ
342- job-template:
343 name: dev_gerrit_lttng-ust_{buildtype}
344 defaults: lttng-ust
345 concurrent: true
346
347 scm:
348 - git:
349 url: https://review.lttng.org/lttng-ust
350 refspec: 'refs/changes/*:refs/changes/*'
351 branches:
352 - '$GERRIT_REFSPEC'
353 basedir: src/lttng-ust
354 skip-tag: true
355
356 triggers:
357 - gerrit:
358 trigger-on:
359 - comment-added-event:
360 approval-category: 'CI-Build'
361 approval-value: 1
362 projects:
363 - project-compare-type: 'PLAIN'
364 project-pattern: 'lttng-ust'
365 branches:
366 - branch-compare-type: 'ANT'
367 branch-pattern: '**'
a3bc0379 368
2356937a
MJ
369 <<: *lttng-ust_matrix_axes_defaults
370 <<: *lttng-ust_builders_defaults
371 <<: *lttng-ust_publishers_gerrit
a3bc0379 372
85d7c882
MJ
373 properties:
374 - inject:
375 properties-content: |
376 PROJECT_NAME=lttng-ust
377 - build-discarder:
378 days-to-keep: 1
379 - throttle:
380 option: 'category'
381 categories:
382 - 'gerrit-{buildtype}'
383
a3bc0379 384
7c50e5dd
JR
385- job-template:
386 name: dev_gerrit_lttng-ust_lttng-tools_{buildtype}
387 defaults: lttng-ust
388 concurrent: true
389
390 scm:
391 - git:
392 url: https://review.lttng.org/lttng-ust
393 refspec: 'refs/changes/*:refs/changes/*'
394 branches:
395 - '$GERRIT_REFSPEC'
396 basedir: src/lttng-ust
397 skip-tag: true
7c50e5dd
JR
398
399 triggers:
400 - gerrit:
401 trigger-on:
402 - comment-added-event:
403 approval-category: 'CI-Build'
404 approval-value: 1
405 projects:
406 - project-compare-type: 'PLAIN'
407 project-pattern: 'lttng-ust'
408 branches:
409 - branch-compare-type: 'ANT'
410 branch-pattern: '**'
411
2356937a
MJ
412 <<: *lttng-ust_matrix_axes_gerrit_lttng-tools
413 <<: *lttng-ust_builders_gerrit_lttng-tools
414 <<: *lttng-ust_publishers_gerrit
7c50e5dd
JR
415
416 properties:
417 - inject:
418 properties-content: |
419 PROJECT_NAME=lttng-ust
420 - build-discarder:
421 days-to-keep: 1
422 - throttle:
423 option: 'category'
424 categories:
425 - 'gerrit-{buildtype}'
426
7c50e5dd 427
2b68721a
MJ
428- job-template:
429 name: lttng-ust_{version}_cppcheck
430 defaults: lttng-ust
431
432 triggers:
433 - pollscm:
434 cron: "@daily"
435
436 builders:
437 - shell: |
5279b0f2
MJ
438 rm -f cppcheck-result.xml
439 cppcheck --enable=all --xml --xml-version=2 $WORKSPACE/src/lttng-ust 2> cppcheck-result.xml
2b68721a
MJ
440
441 publishers:
442 - archive:
5279b0f2 443 artifacts: 'cppcheck-result.xml'
2b68721a
MJ
444 allow-empty: false
445 - cppcheck:
5279b0f2 446 pattern: 'cppcheck-result.xml'
2b68721a
MJ
447 - email:
448 recipients: 'ci-notification@lists.lttng.org'
449 notify-every-unstable-build: true
450 send-to-individuals: false
2356937a
MJ
451 - workspace-cleanup: *lttng-ust_publisher_workspace-cleanup_defaults
452
2b68721a
MJ
453
454- job-template:
455 name: lttng-ust_{version}_scan-build
456 defaults: lttng-ust
94a6d1fb 457 node: 'bionic-amd64'
2b68721a
MJ
458
459 triggers:
460 - pollscm:
461 cron: "@daily"
462
463 builders:
c9b78c7b 464 - copyartifact:
2356937a 465 <<: *lttng-ust_steps_copyartifact_defaults
94a6d1fb 466 project: liburcu_master_build/platform=bionic-amd64,conf=std,build=std
2b68721a 467 - shell:
69f05d59 468 !include-raw-escape: scripts/common/scan-build.sh
2b68721a
MJ
469
470 publishers:
471 - html-publisher:
472 name: 'HTML Report'
473 dir: 'scan-build-archive/'
474 files: 'index.html'
2356937a
MJ
475 - workspace-cleanup: *lttng-ust_publisher_workspace-cleanup_defaults
476
2b68721a 477
cdb4cba4
MJ
478- job-template:
479 name: lttng-ust_{version}_coverity
480 defaults: lttng-ust
94a6d1fb 481 node: 'bionic-amd64'
cdb4cba4
MJ
482
483 triggers:
484 - pollscm:
485 cron: "@daily"
486
487 wrappers:
2356937a
MJ
488 - ansicolor: *lttng-ust_wrapper_ansicolor_defaults
489 - timeout: *lttng-ust_wrapper_timeout_defaults
cdb4cba4 490 - timestamps
2356937a 491 - workspace-cleanup
cdb4cba4
MJ
492 - credentials-binding:
493 - username-password-separated:
494 credential-id: lttng-ust_coverity_token
495 username: COVERITY_SCAN_PROJECT_NAME
496 password: COVERITY_SCAN_TOKEN
497
498 builders:
499 - copyartifact:
2356937a 500 <<: *lttng-ust_steps_copyartifact_defaults
94a6d1fb 501 project: liburcu_master_build/platform=bionic-amd64,conf=std,build=std
cdb4cba4 502 - shell:
ef63064f 503 !include-raw-escape: scripts/common/coverity.sh
cdb4cba4
MJ
504
505 publishers:
1f4fba8c
MJ
506 - archive:
507 artifacts: 'analysis-results.tgz,cov-int/**'
508 allow-empty: false
2356937a 509 - workspace-cleanup: *lttng-ust_publisher_workspace-cleanup_defaults
2b68721a 510
2b68721a 511
3579dc14
MJ
512## Views
513- view-template:
514 name: 'LTTng-ust'
515 view-type: list
516 regex: 'lttng-ust[-_].*'
2b68721a 517
2b68721a 518
3579dc14 519## Projects
2b68721a
MJ
520- project:
521 name: lttng-ust
74cc8870 522 job_prefix: ''
51ca880a
MJ
523 github_user: lttng
524 github_name: lttng-ust
68fff945 525 email_to: 'ci-notification@lists.lttng.org, cc:mathieu.desnoyers@efficios.com'
2b68721a 526 jobs:
03297c9e 527 ## Master ##
2356937a 528 - '{job_prefix}lttng-ust_{version}_{buildtype}':
fe16cb00
MJ
529 buildtype: build
530 version: master
94a6d1fb 531 platforms: !!python/tuple [bionic-amd64]
2356937a
MJ
532 builds: !!python/tuple [std, dist, oot, oot-dist]
533 confs: !!python/tuple [std, agents, debug-rcu, tls_fallback]
534 liburcu_versions: !!python/tuple [stable-0.13, master]
3e93ffa2 535 filter: '(build=="std") || ((liburcu_version=="master" && (conf=="std" || conf=="agents")))'
2356937a
MJ
536 touchstone: ''
537 - '{job_prefix}lttng-ust_{version}_{buildtype}':
fe16cb00
MJ
538 buildtype: portbuild
539 version: master
94a6d1fb 540 platforms: !!python/tuple [deb11-armhf, deb11-arm64, sid-powerpc, deb11-ppc64el, deb11-i386]
2356937a
MJ
541 builds: !!python/tuple [std]
542 confs: !!python/tuple [std, agents]
543 liburcu_versions: !!python/tuple [stable-0.13, master]
568b5cbd 544 filter: ''
2356937a
MJ
545 touchstone: ''
546 - '{job_prefix}lttng-ust_{version}_{buildtype}':
fe16cb00
MJ
547 buildtype: slesbuild
548 version: master
94a6d1fb 549 platforms: !!python/tuple [sles12sp5-amd64]
2356937a
MJ
550 builds: !!python/tuple [std]
551 confs: !!python/tuple [agents]
552 liburcu_versions: !!python/tuple [stable-0.13, master]
568b5cbd 553 filter: ''
2356937a
MJ
554 touchstone: ''
555 - '{job_prefix}lttng-ust_{version}_{buildtype}':
568b5cbd
MJ
556 buildtype: elbuild
557 version: master
94a6d1fb 558 platforms: !!python/tuple [el7-amd64, el8-amd64, el9-amd64]
2356937a
MJ
559 builds: !!python/tuple [std]
560 confs: !!python/tuple [std]
561 liburcu_versions: !!python/tuple [stable-0.13, master]
568b5cbd 562 filter: ''
2356937a
MJ
563 touchstone: ''
564 - '{job_prefix}lttng-ust_{version}_{buildtype}':
0f7217a0
MJ
565 buildtype: freebsdbuild
566 version: master
94a6d1fb 567 platforms: !!python/tuple [freebsd-amd64]
2356937a
MJ
568 builds: !!python/tuple [std]
569 confs: !!python/tuple [agents]
570 liburcu_versions: !!python/tuple [stable-0.13, master]
0f7217a0 571 filter: ''
2356937a 572 touchstone: ''
fe16cb00
MJ
573 - 'lttng-ust_{version}_cppcheck':
574 version: master
575 - 'lttng-ust_{version}_scan-build':
576 version: master
cdb4cba4
MJ
577 - 'lttng-ust_{version}_coverity':
578 version: master
8713492f 579
0fc8b7ac 580 ## Stable 2.13 ##
2356937a 581 - '{job_prefix}lttng-ust_{version}_{buildtype}':
0fc8b7ac
MJ
582 buildtype: build
583 version: stable-2.13
94a6d1fb 584 platforms: !!python/tuple [bionic-amd64]
2356937a
MJ
585 builds: !!python/tuple [std, dist, oot, oot-dist]
586 confs: !!python/tuple [std, agents, debug-rcu, tls_fallback]
587 liburcu_versions: !!python/tuple [stable-0.13, master]
fe5655ff 588 filter: '(build=="std") || ((liburcu_version=="stable-0.13" && (conf=="std" || conf=="agents")))'
2356937a
MJ
589 touchstone: ''
590 - '{job_prefix}lttng-ust_{version}_{buildtype}':
0fc8b7ac
MJ
591 buildtype: portbuild
592 version: stable-2.13
94a6d1fb 593 platforms: !!python/tuple [deb11-armhf, deb11-arm64, sid-powerpc, deb11-ppc64el, deb11-i386]
2356937a
MJ
594 builds: !!python/tuple [std]
595 confs: !!python/tuple [std, agents]
596 liburcu_versions: !!python/tuple [stable-0.13, master]
0fc8b7ac 597 filter: ''
2356937a
MJ
598 touchstone: ''
599 - '{job_prefix}lttng-ust_{version}_{buildtype}':
0fc8b7ac
MJ
600 buildtype: slesbuild
601 version: stable-2.13
94a6d1fb 602 platforms: !!python/tuple [sles12sp5-amd64]
2356937a
MJ
603 builds: !!python/tuple [std]
604 confs: !!python/tuple [agents]
605 liburcu_versions: !!python/tuple [stable-0.13, master]
0fc8b7ac 606 filter: ''
2356937a
MJ
607 touchstone: ''
608 - '{job_prefix}lttng-ust_{version}_{buildtype}':
0fc8b7ac
MJ
609 buildtype: elbuild
610 version: stable-2.13
94a6d1fb 611 platforms: !!python/tuple [el7-amd64, el8-amd64, el9-amd64]
2356937a
MJ
612 builds: !!python/tuple [std]
613 confs: !!python/tuple [std]
614 liburcu_versions: !!python/tuple [stable-0.13, master]
0fc8b7ac 615 filter: ''
2356937a 616 touchstone: ''
0fc8b7ac
MJ
617 - 'lttng-ust_{version}_cppcheck':
618 version: stable-2.13
619 - 'lttng-ust_{version}_scan-build':
620 version: stable-2.13
621
03297c9e 622 ## Stable 2.12 ##
2356937a 623 - '{job_prefix}lttng-ust_{version}_{buildtype}':
03297c9e
MJ
624 buildtype: build
625 version: stable-2.12
94a6d1fb 626 platforms: !!python/tuple [bionic-amd64]
2356937a
MJ
627 builds: !!python/tuple [std, dist, oot, oot-dist]
628 confs: !!python/tuple [std, agents, debug-rcu, tls_fallback]
d24ed5e3
MJ
629 liburcu_versions: !!python/tuple [stable-0.13, master]
630 filter: '(build=="std") || ((liburcu_version=="stable-0.13" && (conf=="std" || conf=="agents")))'
2356937a
MJ
631 touchstone: ''
632 - '{job_prefix}lttng-ust_{version}_{buildtype}':
03297c9e
MJ
633 buildtype: portbuild
634 version: stable-2.12
94a6d1fb 635 platforms: !!python/tuple [deb11-armhf, deb11-arm64, sid-powerpc, deb11-ppc64el, deb11-i386]
2356937a
MJ
636 builds: !!python/tuple [std]
637 confs: !!python/tuple [std, agents]
d24ed5e3 638 liburcu_versions: !!python/tuple [stable-0.13, master]
03297c9e 639 filter: ''
2356937a
MJ
640 touchstone: ''
641 - '{job_prefix}lttng-ust_{version}_{buildtype}':
03297c9e
MJ
642 buildtype: slesbuild
643 version: stable-2.12
94a6d1fb 644 platforms: !!python/tuple [sles12sp5-amd64]
2356937a
MJ
645 builds: !!python/tuple [std]
646 confs: !!python/tuple [agents]
d24ed5e3 647 liburcu_versions: !!python/tuple [stable-0.13]
03297c9e 648 filter: ''
2356937a
MJ
649 touchstone: ''
650 - '{job_prefix}lttng-ust_{version}_{buildtype}':
03297c9e
MJ
651 buildtype: elbuild
652 version: stable-2.12
94a6d1fb 653 platforms: !!python/tuple [el7-amd64, el8-amd64, el9-amd64]
2356937a
MJ
654 builds: !!python/tuple [std]
655 confs: !!python/tuple [std]
d24ed5e3 656 liburcu_versions: !!python/tuple [stable-0.13]
03297c9e 657 filter: ''
2356937a 658 touchstone: ''
03297c9e
MJ
659 - 'lttng-ust_{version}_cppcheck':
660 version: stable-2.12
661 - 'lttng-ust_{version}_scan-build':
662 version: stable-2.12
2b68721a 663
74cc8870
MJ
664
665- project:
666 name: lttng-ust-dev-upstream
667 job_prefix: dev_upstream_
668 github_user: lttng
669 github_name: lttng-ust
670 email_to: 'ci-notification@lists.lttng.org, cc:mathieu.desnoyers@efficios.com'
671 jobs:
fe5655ff 672 ## Stable 2.11 ##
74cc8870 673 - '{job_prefix}lttng-ust_{version}_{buildtype}':
fe5655ff
MJ
674 buildtype: build
675 version: stable-2.11
94a6d1fb 676 platforms: !!python/tuple [bionic-amd64]
2356937a
MJ
677 builds: !!python/tuple [std, dist, oot, oot-dist]
678 confs: !!python/tuple [std, agents, debug-rcu, tls_fallback]
679 liburcu_versions: !!python/tuple [stable-0.11]
74cc8870 680 filter: '(build=="std") || (conf=="std" || conf=="agents")'
2356937a 681 touchstone: ''
74cc8870 682 - '{job_prefix}lttng-ust_{version}_{buildtype}':
fe5655ff
MJ
683 buildtype: portbuild
684 version: stable-2.11
94a6d1fb 685 platforms: !!python/tuple [deb11-armhf, deb11-arm64, sid-powerpc, deb11-ppc64el, deb11-i386]
2356937a
MJ
686 builds: !!python/tuple [std]
687 confs: !!python/tuple [agents]
688 liburcu_versions: !!python/tuple [stable-0.11]
fe5655ff 689 filter: ''
2356937a 690 touchstone: ''
74cc8870 691 - '{job_prefix}lttng-ust_{version}_{buildtype}':
0104d146 692 buildtype: slesbuild
fe5655ff 693 version: stable-2.11
94a6d1fb 694 platforms: !!python/tuple [sles12sp5-amd64]
2356937a
MJ
695 builds: !!python/tuple [std]
696 confs: !!python/tuple [agents]
697 liburcu_versions: !!python/tuple [stable-0.11]
fe5655ff 698 filter: ''
2356937a 699 touchstone: ''
74cc8870 700 - '{job_prefix}lttng-ust_{version}_{buildtype}':
fe5655ff
MJ
701 buildtype: elbuild
702 version: stable-2.11
94a6d1fb 703 platforms: !!python/tuple [el7-amd64, el8-amd64, el9-amd64]
2356937a
MJ
704 builds: !!python/tuple [std]
705 confs: !!python/tuple [std]
706 liburcu_versions: !!python/tuple [stable-0.11]
0104d146 707 filter: ''
2356937a 708 touchstone: ''
0104d146 709
fe5655ff 710 ## Stable 2.10 ##
74cc8870 711 - '{job_prefix}lttng-ust_{version}_{buildtype}':
fe5655ff
MJ
712 buildtype: build
713 version: stable-2.10
94a6d1fb 714 platforms: !!python/tuple [bionic-amd64]
2356937a
MJ
715 builds: !!python/tuple [std, dist, oot, oot-dist]
716 confs: !!python/tuple [std, agents, debug-rcu, tls_fallback]
717 liburcu_versions: !!python/tuple [stable-0.9]
74cc8870 718 filter: '(build=="std") || (conf=="std" || conf=="agents")'
2356937a 719 touchstone: ''
74cc8870 720 - '{job_prefix}lttng-ust_{version}_{buildtype}':
fe5655ff
MJ
721 buildtype: portbuild
722 version: stable-2.10
94a6d1fb 723 platforms: !!python/tuple [deb11-armhf, deb11-arm64, sid-powerpc, deb11-ppc64el, deb11-i386]
2356937a
MJ
724 builds: !!python/tuple [std]
725 confs: !!python/tuple [agents]
726 liburcu_versions: !!python/tuple [stable-0.9]
fe5655ff 727 filter: ''
2356937a 728 touchstone: ''
74cc8870 729 - '{job_prefix}lttng-ust_{version}_{buildtype}':
8713492f 730 buildtype: slesbuild
fe5655ff 731 version: stable-2.10
94a6d1fb 732 platforms: !!python/tuple [sles12sp5-amd64]
2356937a
MJ
733 builds: !!python/tuple [std]
734 confs: !!python/tuple [agents]
735 liburcu_versions: !!python/tuple [stable-0.9]
fe5655ff 736 filter: ''
2356937a 737 touchstone: ''
74cc8870 738 - '{job_prefix}lttng-ust_{version}_{buildtype}':
fe5655ff
MJ
739 buildtype: elbuild
740 version: stable-2.10
94a6d1fb 741 platforms: !!python/tuple [el7-amd64, el8-amd64, el9-amd64]
2356937a
MJ
742 builds: !!python/tuple [std]
743 confs: !!python/tuple [std]
744 liburcu_versions: !!python/tuple [stable-0.9]
8713492f 745 filter: ''
2356937a 746 touchstone: ''
8713492f
MJ
747
748
a3bc0379
MJ
749- project:
750 name: gerrit-lttng-ust
74cc8870 751 job_prefix: ''
a3bc0379
MJ
752 github_user: lttng
753 github_name: lttng-ust
754 jobs:
755 - 'dev_gerrit_lttng-ust_{buildtype}':
756 buildtype: build
94a6d1fb 757 platforms: !!python/tuple [bionic-amd64]
2356937a
MJ
758 builds: !!python/tuple [std, oot, dist, oot-dist]
759 confs: !!python/tuple [std, agents]
760 liburcu_versions: !!python/tuple [stable-0.13]
c8370e00 761 filter: ''
2356937a 762 touchstone: ''
7c50e5dd
JR
763 - 'dev_gerrit_lttng-ust_lttng-tools_{buildtype}':
764 buildtype: build
94a6d1fb 765 platforms: !!python/tuple [bionic-amd64]
2356937a
MJ
766 builds: !!python/tuple [std, oot, dist, oot-dist]
767 confs: !!python/tuple [std, agents]
7c50e5dd 768 filter: ''
2356937a
MJ
769 touchstone: ''
770 liburcu_version: stable-0.13
7c50e5dd 771 babeltrace_version: stable-2.0
c8370e00
MJ
772 - 'dev_gerrit_lttng-ust_{buildtype}':
773 buildtype: portbuild
94a6d1fb 774 platforms: !!python/tuple [deb11-armhf, deb11-arm64, sid-powerpc, deb11-ppc64el, deb11-i386]
2356937a
MJ
775 builds: !!python/tuple [std]
776 confs: !!python/tuple [agents]
777 liburcu_versions: !!python/tuple [stable-0.13]
c8370e00 778 filter: ''
2356937a 779 touchstone: ''
6185514d
MJ
780 - 'dev_gerrit_lttng-ust_{buildtype}':
781 buildtype: freebsdbuild
94a6d1fb 782 platforms: !!python/tuple [freebsd-amd64]
2356937a
MJ
783 builds: !!python/tuple [std]
784 confs: !!python/tuple [agents]
785 liburcu_versions: !!python/tuple [stable-0.13]
6185514d 786 filter: ''
2356937a 787 touchstone: ''
a3bc0379 788
3579dc14 789- project:
e04f80ef 790 name: lttng-ust-views
3579dc14
MJ
791 views:
792 - LTTng-ust
This page took 0.066302 seconds and 4 git commands to generate.