jjb/ansible: Replace deb11-ppc64el with deb12-ppc64el
[lttng-ci.git] / jobs / lttng-tools.yaml
1 ---
2 ## Defaults
3 - defaults:
4 name: lttng-tools
5 description: |
6 The lttng-tools project provides a session daemon (lttng-sessiond)
7 that acts as a tracing registry, the "lttng" command line for tracing
8 control, a lttng-ctl library for tracing control and a lttng-relayd
9 for network streaming.
10
11 <p>Job is managed by Jenkins Job Builder.</p>
12
13 project-type: freestyle
14
15 wrappers:
16 - ansicolor: &lttng-tools_wrapper_ansicolor_defaults
17 colormap: xterm
18 - timeout: &lttng-tools_wrapper_timeout_defaults
19 timeout: 30
20 abort: true
21 type: no-activity
22 write-description: "<h1 style=\"color:red\">This build failed due to timeout.</h1>"
23 - timestamps
24 - workspace-cleanup
25 - raw: &lttng-tools_wrapper_proc-cleaner_defaults
26 xml: |
27 <org.jenkinsci.plugins.proccleaner.PreBuildCleanup plugin="proc-cleaner-plugin">
28 <cleaner class="org.jenkinsci.plugins.proccleaner.PsCleaner">
29 <killerType>org.jenkinsci.plugins.proccleaner.PsAllKiller</killerType>
30 <killer class="org.jenkinsci.plugins.proccleaner.PsAllKiller"/>
31 <switchedOff>false</switchedOff>
32 <systemProcessesFilterOff>false</systemProcessesFilterOff>
33 </cleaner>
34 </org.jenkinsci.plugins.proccleaner.PreBuildCleanup>
35
36 scm:
37 - git: &lttng-tools_scm_git_default
38 url: https://github.com/{github_user}/lttng-tools.git
39 browser: githubweb
40 browser-url: https://github.com/{github_user}/lttng-tools
41 branches:
42 - '{version}'
43 basedir: src/lttng-tools
44 skip-tag: true
45
46 triggers:
47 - pollscm: &lttng-tools_trigger_pollscm_default
48 cron: "@hourly"
49
50 properties:
51 - inject: &lttng-tools_property_inject_defaults
52 properties-content: |
53 PROJECT_NAME=lttng-tools
54 - build-discarder: &lttng-tools_property_build-discarder_defaults
55 num-to-keep: 20
56 artifact-num-to-keep: 2
57 - github: &lttng-tools_property_github_defaults
58 url: https://github.com/{github_user}/lttng-tools
59
60 ## Anchors
61 - _lttng-tools_steps_copyartifact_defaults:
62 name: 'lttng-tools_steps_copyartifact_defaults'
63 steps:
64 - copyartifact: &lttng-tools_steps_copyartifact_defaults
65 project: ''
66 which-build: last-successful
67 stable: false
68 filter: 'build/**'
69 target: 'deps'
70 do-not-fingerprint: true
71
72
73 ## Axis Anchors
74 - _lttng-tools_matrix_axes_defaults: &lttng-tools_matrix_axes_defaults
75 name: 'lttng-tools_matrix_axes_defaults'
76 project-type: matrix
77 node: 'master' # Applies only to matrix flyweight task
78 execution-strategy: &lttng-tools_matrix_execution-strategy_defaults
79 combination-filter: '{filter}'
80 touchstone:
81 expr: '{touchstone}'
82 result: unstable
83 axes:
84 - axis: &lttng-tools_matrix_axis_platform
85 type: slave
86 name: platform
87 values: '{obj:platforms}'
88 - axis: &lttng-tools_matrix_axis_conf
89 type: user-defined
90 name: conf
91 values: '{obj:confs}'
92 - axis: &lttng-tools_matrix_axis_build
93 type: user-defined
94 name: build
95 values: '{obj:builds}'
96 - axis: &lttng-tools_matrix_axis_liburcu_version
97 type: user-defined
98 name: liburcu_version
99 values: '{obj:urcuversions}'
100 - axis: &lttng-tools_matrix_axis_babeltrace_version
101 type: user-defined
102 name: babeltrace_version
103 values: '{obj:babelversions}'
104
105 - _lttng-tools_matrix_axes_rootbuild: &lttng-tools_matrix_axes_rootbuild
106 name: 'lttng-tools_matrix_axes_rootbuild'
107 project-type: matrix
108 node: 'master' # Applies only to matrix flyweight task
109 execution-strategy: *lttng-tools_matrix_execution-strategy_defaults
110 axes:
111 - axis:
112 type: slave
113 name: node
114 values:
115 - 'amd64-rootnode'
116 - 'i386-rootnode'
117 - axis:
118 <<: *lttng-tools_matrix_axis_platform
119 type: user-defined
120 - axis: *lttng-tools_matrix_axis_conf
121 - axis: *lttng-tools_matrix_axis_build
122 - axis: *lttng-tools_matrix_axis_liburcu_version
123 - axis: *lttng-tools_matrix_axis_babeltrace_version
124
125
126 ## Builders Anchors
127 - _lttng-tools_builders_defaults: &lttng-tools_builders_defaults
128 name: 'lttng-tools_builders_defaults'
129 builders:
130 # Generate a properties file to add additionnal env
131 - shell: |
132 #!/bin/bash
133 set -exu
134 # Select the deps conf based on the current conf
135 case "$conf" in
136 std|static)
137 liburcu_conf=$conf
138 babeltrace_conf=$conf
139 ust_conf=$conf
140 ;;
141 agents)
142 liburcu_conf=std
143 babeltrace_conf=std
144 ust_conf=$conf
145 ;;
146 debug-rcu|tls_fallback)
147 liburcu_conf=$conf
148 babeltrace_conf=std
149 ust_conf=$conf
150 ;;
151 *)
152 liburcu_conf=std
153 babeltrace_conf=std
154 ust_conf=std
155 ;;
156 esac
157 echo "liburcu_conf=$liburcu_conf" >> env.properties
158 echo "babeltrace_conf=$babeltrace_conf" >> env.properties
159 echo "ust_conf=$ust_conf" >> env.properties
160
161 # Inject the additionnal env early to use them in the copyartifact step
162 - inject:
163 properties-file: env.properties
164
165 # Always copy liburcu artifacts
166 - copyartifact:
167 <<: *lttng-tools_steps_copyartifact_defaults
168 project: '{urcu_job_prefix}liburcu_${{liburcu_version}}_{buildtype}/platform=${{platform}},conf=${{liburcu_conf}},build=std'
169
170 # Always copy babeltrace artifacts
171 - copyartifact:
172 <<: *lttng-tools_steps_copyartifact_defaults
173 project: '{bt_job_prefix}babeltrace_${{babeltrace_version}}_{buildtype}/platform=${{platform}},conf=${{babeltrace_conf}},build=std'
174
175 # Some conf do not require lttng-ust artifacts
176 - conditional-step:
177 condition-kind: not
178 condition-operand:
179 condition-kind: regex-match
180 label: '$conf'
181 regex: '(no-ust|relayd-only)'
182 steps:
183 - copyartifact:
184 <<: *lttng-tools_steps_copyartifact_defaults
185 project: '{ust_job_prefix}lttng-ust_{ustversion}_{buildtype}/liburcu_version=${{liburcu_version}},platform=${{platform}},conf=${{ust_conf}},build=std'
186
187 # rootbuild requires a checkout of modules
188 - conditional-step:
189 condition-kind: regex-match
190 label: '$JOB_NAME'
191 regex: '.*_rootbuild.*'
192 steps:
193 - shell: |
194 #!/bin/bash
195 set -exu
196 git clone -b "{version}" https://github.com/{github_user}/lttng-modules.git src/lttng-modules
197
198 - shell:
199 !include-raw-escape: scripts/lttng-tools/prebuild_clean_processes_coredumps.sh
200
201 - shell:
202 !include-raw-escape:
203 - scripts/common/print.sh
204 - scripts/lttng-tools/build.sh
205
206 - _lttng-tools_builders_review: &lttng-tools_builders_review
207 name: 'lttng-tools_builders_review'
208 builders:
209 - shell:
210 !include-raw-escape: scripts/lttng-tools/gerrit-depends-on.sh
211
212 - inject:
213 properties-file: gerrit_custom_dependencies.properties
214
215 # rootbuild requires a checkout of modules
216 - conditional-step:
217 condition-kind: regex-match
218 label: '$JOB_NAME'
219 regex: '.*_rootbuild.*'
220 steps:
221 - shell: |
222 #!/bin/bash
223 set -exu
224 git clone -b "$GERRIT_BRANCH" https://github.com/{github_user}/lttng-modules.git src/lttng-modules
225
226 # Copy lttng-ust artifacts if the conf is 'std' or 'agents'
227 # and we don't depend on a specific lttng-ust change
228 - conditional-step:
229 condition-kind: and
230 on-evaluation-failure: run
231 condition-operands:
232 - condition-kind: shell
233 condition-command: 'test "$GERRIT_DEP_LTTNG_UST" = ""'
234 - condition-kind: regex-match
235 label: '$conf'
236 regex: (std|agents)
237 steps:
238 - copyartifact:
239 <<: *lttng-tools_steps_copyartifact_defaults
240 project: '{ust_job_prefix}lttng-ust_${{GERRIT_BRANCH}}_{buildtype}/liburcu_version=${{liburcu_version}},platform=${{platform}},conf=${{conf}},build=std'
241
242 # Copy liburcu artifacts if we don't depend on a specific liburcu change
243 - conditional-step:
244 condition-kind: shell
245 on-evaluation-failure: run
246 condition-command: 'test "$GERRIT_DEP_USERSPACE_RCU" = ""'
247 steps:
248 - copyartifact:
249 <<: *lttng-tools_steps_copyartifact_defaults
250 project: '{urcu_job_prefix}liburcu_${{liburcu_version}}_{buildtype}/platform=${{platform}},conf=std,build=std'
251
252 # Copy babeltrace artifacts if we don't depend on a specific babeltrace change
253 - conditional-step:
254 condition-kind: shell
255 on-evaluation-failure: run
256 condition-command: 'test "$GERRIT_DEP_BABELTRACE" = ""'
257 steps:
258 - copyartifact:
259 <<: *lttng-tools_steps_copyartifact_defaults
260 project: '{bt_job_prefix}babeltrace_${{babeltrace_version}}_{buildtype}/platform=${{platform}},conf=std,build=std'
261
262 - shell:
263 !include-raw-escape: scripts/lttng-tools/prebuild_clean_processes_coredumps.sh
264
265 # Build liburcu if we depend on a specific liburcu change
266 - conditional-step:
267 condition-kind: shell
268 condition-command: 'test "$GERRIT_DEP_USERSPACE_RCU" != ""'
269 steps:
270 - shell:
271 !include-raw-escape:
272 - scripts/common/override-build-std.sh
273 - scripts/common/print.sh
274 - scripts/liburcu/build.sh
275 - shell:
276 !include-raw-escape: scripts/lttng-tools/gerrit-install-deps.sh
277
278 # Build babeltrace if we depend on a specific babeltrace change
279 - conditional-step:
280 condition-kind: shell
281 condition-command: 'test "$GERRIT_DEP_BABELTRACE" != ""'
282 steps:
283 - shell:
284 !include-raw-escape:
285 - scripts/common/override-build-std.sh
286 - scripts/common/print.sh
287 - scripts/babeltrace/build.sh
288 - shell:
289 !include-raw-escape: scripts/lttng-tools/gerrit-install-deps.sh
290
291 # Build lttng-ust if we depend on a specific lttng-ust change
292 - conditional-step:
293 condition-kind: shell
294 condition-command: 'test "$GERRIT_DEP_LTTNG_UST" != ""'
295 steps:
296 - shell:
297 !include-raw-escape:
298 - scripts/common/override-build-std.sh
299 - scripts/common/print.sh
300 - scripts/lttng-ust/build.sh
301 - shell:
302 !include-raw-escape: scripts/lttng-tools/gerrit-install-deps.sh
303
304 # Finaly build lttng-tools
305 - shell:
306 !include-raw-escape:
307 - scripts/common/print.sh
308 - scripts/lttng-tools/build.sh
309
310 - _lttng-tools_builders_win: &lttng-tools_builders_win
311 name: 'lttng-tools_builders_win'
312 builders:
313 # Always copy liburcu artifacts
314 - copyartifact:
315 <<: *lttng-tools_steps_copyartifact_defaults
316 project: '{urcu_job_prefix}liburcu_${{liburcu_version}}_winbuild/platform=${{platform}},conf=std,build=std'
317
318 - conditional-step:
319 condition-kind: strings-match
320 on-evaluation-failure: run
321 condition-string1: '${{platform}}'
322 condition-string2: 'cygwin64'
323 steps:
324 - shell:
325 !include-raw-escape:
326 - scripts/common/cygwin64-shebang
327 - scripts/common/cygpath-prefix
328 - scripts/common/print.sh
329 - scripts/lttng-tools/build.sh
330
331 - conditional-step:
332 condition-kind: strings-match
333 on-evaluation-failure: run
334 condition-string1: '${{platform}}'
335 condition-string2: 'msys2-mingw32'
336 steps:
337 - inject:
338 properties-content: 'MSYSTEM=MINGW32'
339 - shell:
340 !include-raw-escape:
341 - scripts/common/msys2-shebang
342 - scripts/common/cygpath-prefix
343 - scripts/common/print.sh
344 - scripts/lttng-tools/build.sh
345
346 - conditional-step:
347 condition-kind: strings-match
348 on-evaluation-failure: run
349 condition-string1: '${{platform}}'
350 condition-string2: 'msys2-mingw64'
351 steps:
352 - inject:
353 properties-content: 'MSYSTEM=MINGW64'
354 - shell:
355 !include-raw-escape:
356 - scripts/common/msys2-shebang
357 - scripts/common/cygpath-prefix
358 - scripts/common/print.sh
359 - scripts/lttng-tools/build.sh
360
361 - _lttng-tools_publishers_defaults: &lttng-tools_publishers_defaults
362 name: 'lttng-tools_publishers_defaults'
363 publishers:
364 # On build abort (timeout), wait 10 seconds before running the other post
365 # build scripts, this will allow the processes to terminate and make the
366 # build log more legible.
367 - postbuildscript: &lttng-tools_publisher_postbuildscript_wait_10_seconds_on_abort
368 mark-unstable-if-failed: false
369 builders:
370 - role: SLAVE
371 build-on:
372 - ABORTED
373 build-steps:
374 - shell:
375 !include-raw-escape: scripts/lttng-tools/postbuild_wait_10_seconds.sh
376
377 # On build failure, try to get partial tap results if any exists
378 - postbuildscript: &lttng-tools_publisher_postbuildscript_collect_tap_on_failure
379 mark-unstable-if-failed: false
380 builders:
381 - role: SLAVE
382 build-on:
383 - ABORTED
384 - FAILURE
385 build-steps:
386 - shell:
387 !include-raw-escape: scripts/lttng-tools/postbuild_collect_tap_results.sh
388
389 # If there are leftover lttng processes or core files present, kill the
390 # processes, collect the core files, delete them and mark the build
391 # unstable.
392 - postbuildscript: &lttng-tools_publisher_postbuildscript_clean_processes_coredumps
393 mark-unstable-if-failed: true
394 builders:
395 - role: SLAVE
396 build-on:
397 - SUCCESS
398 - UNSTABLE
399 - NOT_BUILT
400 - ABORTED
401 - FAILURE
402 build-steps:
403 - shell:
404 !include-raw-escape: scripts/lttng-tools/postbuild_clean_processes_coredumps.sh
405
406 - tap: &lttng-tools_publisher_tap_defaults
407 results: 'tap/**/*.*'
408 fail-if-no-results: true
409 failed-tests-mark-build-as-failure: true
410 include-comment-diagnostics: true
411 output-tap-to-console: false
412 todo-is-failure: false
413
414 - raw: &lttng-tools_publisher_warnings-ng_defaults
415 xml: |
416 <io.jenkins.plugins.analysis.core.steps.IssuesRecorder plugin="warnings-ng">
417 <analysisTools>
418 <io.jenkins.plugins.analysis.warnings.Gcc4>
419 <id/>
420 <name/>
421 <jenkins plugin="plugin-util-api"/>
422 <pattern/>
423 <reportEncoding/>
424 <skipSymbolicLinks>false</skipSymbolicLinks>
425 </io.jenkins.plugins.analysis.warnings.Gcc4>
426 </analysisTools>
427 <sourceCodeEncoding/>
428 <sourceDirectory/>
429 <sourceDirectories/>
430 <ignoreQualityGate>false</ignoreQualityGate>
431 <ignoreFailedBuilds>true</ignoreFailedBuilds>
432 <failOnError>false</failOnError>
433 <healthy>0</healthy>
434 <unhealthy>0</unhealthy>
435 <minimumSeverity plugin="analysis-model-api">
436 <name>LOW</name>
437 </minimumSeverity>
438 <filters/>
439 <isEnabledForFailure>true</isEnabledForFailure>
440 <isAggregatingResults>true</isAggregatingResults>
441 <isBlameDisabled>false</isBlameDisabled>
442 <skipPublishingChecks>true</skipPublishingChecks>
443 <publishAllIssues>false</publishAllIssues>
444 <qualityGates>
445 <io.jenkins.plugins.analysis.core.util.QualityGate>
446 <threshold>1</threshold>
447 <type>TOTAL</type>
448 <status>WARNING</status>
449 </io.jenkins.plugins.analysis.core.util.QualityGate>
450 </qualityGates>
451 <trendChartType>AGGREGATION_TOOLS</trendChartType>
452 <scm/>
453 </io.jenkins.plugins.analysis.core.steps.IssuesRecorder>
454
455 - archive: &lttng-tools_publisher_archive_defaults
456 artifacts: 'build/**,deps/**,tap/**,log/**'
457 follow-symlinks: true
458 allow-empty: false
459
460 - workspace-cleanup: &lttng-tools_publisher_workspace-cleanup_defaults
461 clean-if:
462 - failure: false
463
464 - raw: &lttng-tools_publisher_proc-cleaner_defaults
465 xml: |
466 <org.jenkinsci.plugins.proccleaner.PostBuildCleanup plugin="proc-cleaner-plugin">
467 <cleaner class="org.jenkinsci.plugins.proccleaner.PsCleaner">
468 <killerType>org.jenkinsci.plugins.proccleaner.PsAllKiller</killerType>
469 <killer class="org.jenkinsci.plugins.proccleaner.PsAllKiller"/>
470 <switchedOff>false</switchedOff>
471 <systemProcessesFilterOff>false</systemProcessesFilterOff>
472 </cleaner>
473 </org.jenkinsci.plugins.proccleaner.PostBuildCleanup>
474
475 - ircbot: &lttng-tools_publisher_ircbot_defaults
476 strategy: statechange-only
477 message-type: summary
478 matrix-notifier: only-parent
479
480 - email-ext: &lttng-tools_publisher_email-ext_defaults
481 recipients: '{obj:email_to}'
482 reply-to: ci-notification@lists.lttng.org
483 always: false
484 unstable: false
485 first-failure: true
486 first-unstable: true
487 not-built: false
488 aborted: false
489 regression: false
490 failure: false
491 second-failure: false
492 improvement: false
493 still-failing: false
494 success: false
495 fixed: false
496 fixed-unhealthy: true
497 still-unstable: false
498 pre-build: false
499 matrix-trigger: only-parent
500 send-to:
501 - recipients
502
503 - _lttng-tools_publishers_win: &lttng-tools_publishers_win
504 name: 'lttng-tools_publishers_win'
505 publishers:
506 - tap: *lttng-tools_publisher_tap_defaults
507 - raw: *lttng-tools_publisher_warnings-ng_defaults
508 - archive: *lttng-tools_publisher_archive_defaults
509 - workspace-cleanup: *lttng-tools_publisher_workspace-cleanup_defaults
510 - raw: *lttng-tools_publisher_proc-cleaner_defaults
511 - ircbot: *lttng-tools_publisher_ircbot_defaults
512 - email-ext: *lttng-tools_publisher_email-ext_defaults
513
514
515 ## Templates
516 - job-template:
517 name: '{job_prefix}lttng-tools_{version}_{buildtype}'
518 defaults: lttng-tools
519
520 <<: *lttng-tools_matrix_axes_defaults
521 <<: *lttng-tools_builders_defaults
522 <<: *lttng-tools_publishers_defaults
523
524 triggers:
525 - pollscm: *lttng-tools_trigger_pollscm_default
526 - reverse:
527 jobs: '{ust_job_prefix}lttng-ust_{version}_{buildtype}'
528 result: 'success'
529
530 - job-template:
531 name: 'dev_{user}_lttng-tools_{version}_{buildtype}'
532 defaults: lttng-tools
533
534 <<: *lttng-tools_matrix_axes_defaults
535 <<: *lttng-tools_builders_defaults
536 <<: *lttng-tools_publishers_defaults
537
538 - job-template:
539 name: '{job_prefix}lttng-tools_{version}_long_regression'
540 defaults: lttng-tools
541
542 properties:
543 - inject:
544 properties-content: |
545 PROJECT_NAME=lttng-tools
546 LTTNG_TOOLS_RUN_TESTS_LONG_REGRESSION=yes
547 - build-discarder: *lttng-tools_property_build-discarder_defaults
548 - github: *lttng-tools_property_github_defaults
549
550 wrappers:
551 - ansicolor: *lttng-tools_wrapper_ansicolor_defaults
552 - timeout:
553 <<: *lttng-tools_wrapper_timeout_defaults
554 timeout: 45
555 - timestamps
556 - workspace-cleanup
557 - raw: *lttng-tools_wrapper_proc-cleaner_defaults
558
559 <<: *lttng-tools_matrix_axes_defaults
560 <<: *lttng-tools_builders_defaults
561 <<: *lttng-tools_publishers_defaults
562
563 triggers:
564 - pollscm: *lttng-tools_trigger_pollscm_default
565 - reverse:
566 jobs: '{ust_job_prefix}lttng-ust_{version}_{buildtype}'
567 result: 'success'
568
569 - job-template:
570 name: '{job_prefix}lttng-tools_{version}_rootbuild'
571 defaults: lttng-tools
572
573 scm:
574 - git: *lttng-tools_scm_git_default
575
576 wrappers:
577 - ansicolor: *lttng-tools_wrapper_ansicolor_defaults
578 - timeout:
579 <<: *lttng-tools_wrapper_timeout_defaults
580 timeout: 10
581 - timestamps
582
583 <<: *lttng-tools_matrix_axes_rootbuild
584 <<: *lttng-tools_builders_defaults
585 <<: *lttng-tools_publishers_defaults
586
587 triggers:
588 - pollscm: *lttng-tools_trigger_pollscm_default
589 - reverse:
590 jobs: '{ust_job_prefix}lttng-ust_{version}_build'
591 result: 'success'
592
593 - job-template:
594 name: '{job_prefix}lttng-tools_{version}_rootbuild_i386'
595 defaults: lttng-tools
596
597 scm:
598 - git: *lttng-tools_scm_git_default
599
600 wrappers:
601 - ansicolor: *lttng-tools_wrapper_ansicolor_defaults
602 - timeout:
603 <<: *lttng-tools_wrapper_timeout_defaults
604 timeout: 10
605 - timestamps
606
607 <<: *lttng-tools_matrix_axes_rootbuild
608 <<: *lttng-tools_builders_defaults
609 <<: *lttng-tools_publishers_defaults
610
611 triggers:
612 - pollscm: *lttng-tools_trigger_pollscm_default
613 - reverse:
614 jobs: '{ust_job_prefix}lttng-ust_{version}_build'
615 result: 'success'
616
617 - job-template:
618 name: lttng-tools_{version}_winbuild
619 defaults: lttng-tools
620
621 <<: *lttng-tools_matrix_axes_defaults
622 <<: *lttng-tools_builders_win
623 <<: *lttng-tools_publishers_win
624
625 - job-template:
626 name: dev_review_lttng-tools_{version}_{buildtype}
627 defaults: lttng-tools
628 concurrent: true
629
630 scm:
631 - git: &lttng-tools_scm_git_review
632 url: https://review.lttng.org/lttng-tools
633 refspec: 'refs/changes/*:refs/changes/*'
634 branches:
635 - '$GERRIT_REFSPEC'
636 basedir: src/lttng-tools
637 skip-tag: true
638
639 triggers:
640 - gerrit: &lttng-tools_trigger_gerrit_default
641 trigger-on:
642 - comment-added-event:
643 approval-category: 'CI-Build'
644 approval-value: 1
645 projects:
646 - project-compare-type: 'PLAIN'
647 project-pattern: 'lttng-tools'
648 branches:
649 - branch-compare-type: 'PLAIN'
650 branch-pattern: '{version}'
651
652 properties:
653 - inject: *lttng-tools_property_inject_defaults
654 - build-discarder:
655 days-to-keep: 1
656 - throttle:
657 option: 'category'
658 categories:
659 - 'gerrit-{buildtype}'
660
661 <<: *lttng-tools_matrix_axes_defaults
662 <<: *lttng-tools_builders_review
663
664 publishers:
665 # On build abort (timeout), wait 10 seconds before running the other post
666 # build scripts, this will allow the processes to terminate and make the
667 # build log more legible.
668 - postbuildscript: *lttng-tools_publisher_postbuildscript_wait_10_seconds_on_abort
669
670 # On build failure, try to get partial tap results if any exists
671 - postbuildscript: *lttng-tools_publisher_postbuildscript_collect_tap_on_failure
672
673 # If there are leftover lttng processes or core files present, kill the
674 # processes, collect the core files, delete them and mark the build
675 # unstable.
676 - postbuildscript: *lttng-tools_publisher_postbuildscript_clean_processes_coredumps
677
678 - tap: *lttng-tools_publisher_tap_defaults
679 - raw: *lttng-tools_publisher_warnings-ng_defaults
680 - archive: *lttng-tools_publisher_archive_defaults
681 - workspace-cleanup: *lttng-tools_publisher_workspace-cleanup_defaults
682 - raw: *lttng-tools_publisher_proc-cleaner_defaults
683
684 - job-template:
685 name: dev_review_lttng-tools_{version}_smokebuild
686 defaults: lttng-tools
687 concurrent: true
688
689 scm:
690 - git: *lttng-tools_scm_git_review
691
692 triggers:
693 - gerrit: &lttng-tools_trigger_gerrit_smoke_1
694 trigger-on:
695 - comment-added-event:
696 approval-category: 'Smoke-Build'
697 approval-value: 1
698 projects:
699 - project-compare-type: 'PLAIN'
700 project-pattern: 'lttng-tools'
701 branches:
702 - branch-compare-type: 'PLAIN'
703 branch-pattern: '{version}'
704 skip-vote:
705 successful: true
706 failed: true
707 unstable: true
708 notbuilt: true
709 aborted: true
710
711 properties:
712 - inject:
713 properties-content: |
714 PROJECT_NAME=lttng-tools
715 LTTNG_TOOLS_RUN_TESTS=no
716 - build-discarder:
717 days-to-keep: 1
718
719 <<: *lttng-tools_matrix_axes_defaults
720 <<: *lttng-tools_builders_review
721
722 publishers:
723 - raw: *lttng-tools_publisher_warnings-ng_defaults
724 - workspace-cleanup: *lttng-tools_publisher_workspace-cleanup_defaults
725 - raw: *lttng-tools_publisher_proc-cleaner_defaults
726
727 - job-template:
728 name: dev_review_lttng-tools_{version}_clang-tidy
729 defaults: lttng-tools
730 concurrent: true
731
732 scm:
733 - git: *lttng-tools_scm_git_review
734
735 triggers:
736 - gerrit: &lttng-tools_trigger_gerrit_smoke_2
737 trigger-on:
738 - comment-added-event:
739 approval-category: 'Smoke-Build'
740 approval-value: 2
741 projects:
742 - project-compare-type: 'PLAIN'
743 project-pattern: 'lttng-tools'
744 branches:
745 - branch-compare-type: 'PLAIN'
746 branch-pattern: '{version}'
747 skip-vote:
748 successful: true
749 failed: true
750 unstable: true
751 notbuilt: true
752 aborted: true
753
754 properties:
755 - inject:
756 properties-content: |
757 PROJECT_NAME=lttng-tools
758 LTTNG_TOOLS_MAKE_INSTALL=no
759 LTTNG_TOOLS_MAKE_CLEAN=no
760 LTTNG_TOOLS_RUN_TESTS=no
761 LTTNG_TOOLS_GEN_COMPILE_COMMANDS=yes
762 LTTNG_TOOLS_CLANG_TIDY=yes
763 - build-discarder:
764 days-to-keep: 1
765
766 <<: *lttng-tools_matrix_axes_defaults
767 <<: *lttng-tools_builders_review
768
769 publishers:
770 - raw:
771 xml: |
772 <io.jenkins.plugins.analysis.core.steps.IssuesRecorder plugin="warnings-ng">
773 <analysisTools>
774 <io.jenkins.plugins.analysis.warnings.ClangTidy>
775 <id/>
776 <name/>
777 <jenkins plugin="plugin-util-api"/>
778 <pattern/>
779 <reportEncoding/>
780 <skipSymbolicLinks>false</skipSymbolicLinks>
781 </io.jenkins.plugins.analysis.warnings.ClangTidy>
782 </analysisTools>
783 <sourceCodeEncoding/>
784 <sourceDirectory/>
785 <sourceDirectories/>
786 <ignoreQualityGate>false</ignoreQualityGate>
787 <ignoreFailedBuilds>true</ignoreFailedBuilds>
788 <failOnError>false</failOnError>
789 <healthy>0</healthy>
790 <unhealthy>0</unhealthy>
791 <minimumSeverity plugin="analysis-model-api">
792 <name>LOW</name>
793 </minimumSeverity>
794 <filters/>
795 <isEnabledForFailure>true</isEnabledForFailure>
796 <isAggregatingResults>true</isAggregatingResults>
797 <isBlameDisabled>false</isBlameDisabled>
798 <skipPublishingChecks>true</skipPublishingChecks>
799 <publishAllIssues>false</publishAllIssues>
800 <qualityGates>
801 <io.jenkins.plugins.analysis.core.util.QualityGate>
802 <status>FAILED</status>
803 <threshold>1</threshold>
804 <type>TOTAL</type>
805 </io.jenkins.plugins.analysis.core.util.QualityGate>
806 </qualityGates>
807 <trendChartType>AGGREGATION_TOOLS</trendChartType>
808 <scm/>
809 </io.jenkins.plugins.analysis.core.steps.IssuesRecorder>
810 - archive:
811 artifacts: 'clang-tidy-fixes.diff'
812 allow-empty: true
813 - workspace-cleanup: *lttng-tools_publisher_workspace-cleanup_defaults
814 - raw: *lttng-tools_publisher_proc-cleaner_defaults
815
816 - job-template:
817 name: dev_review_lttng-tools_{version}_rootbuild
818 defaults: lttng-tools
819 concurrent: true
820
821 scm:
822 - git: *lttng-tools_scm_git_review
823
824 triggers:
825 - gerrit: *lttng-tools_trigger_gerrit_default
826
827 properties:
828 - inject: *lttng-tools_property_inject_defaults
829 - build-discarder:
830 days-to-keep: 1
831 - throttle:
832 option: 'category'
833 categories:
834 - 'gerrit-{buildtype}'
835
836 <<: *lttng-tools_matrix_axes_rootbuild
837 <<: *lttng-tools_builders_review
838
839 publishers:
840 - tap: *lttng-tools_publisher_tap_defaults
841 - raw: *lttng-tools_publisher_warnings-ng_defaults
842 - archive: *lttng-tools_publisher_archive_defaults
843 - workspace-cleanup: *lttng-tools_publisher_workspace-cleanup_defaults
844 - raw: *lttng-tools_publisher_proc-cleaner_defaults
845
846 - job-template:
847 name: 'dev_review_lttng-tools_{version}_check-format'
848 defaults: lttng-tools
849 concurrent: true
850
851 scm:
852 - git: *lttng-tools_scm_git_review
853
854 triggers:
855 - gerrit: *lttng-tools_trigger_gerrit_smoke_1
856
857 node: 'jammy-amd64'
858
859 builders:
860 - shell:
861 !include-raw-escape: scripts/common/check-format.sh
862
863 properties:
864 - inject: *lttng-tools_property_inject_defaults
865 - build-discarder:
866 days-to-keep: 1
867
868 publishers:
869 - archive:
870 artifacts: 'clang-format-fixes.diff'
871 allow-empty: true
872 - workspace-cleanup: *lttng-tools_publisher_workspace-cleanup_defaults
873
874 - job-template:
875 name: lttng-tools_{version}_release
876 defaults: lttng-tools
877 node: 'bionic-amd64'
878
879 triggers:
880 - pollscm:
881 cron: "@daily"
882
883 scm:
884 - git:
885 url: https://github.com/{github_user}/lttng-tools.git
886 browser: githubweb
887 browser-url: https://github.com/{github_user}/lttng-tools
888 refspec: '+refs/tags/*:refs/remotes/origin/tags/*'
889 branches:
890 - '*/tags/{version}.*'
891 basedir: src/lttng-tools
892
893 builders:
894 - copyartifact:
895 <<: *lttng-tools_steps_copyartifact_defaults
896 project: 'liburcu_{urcuversion}_build/platform=bionic-amd64,conf=std,build=std'
897 - copyartifact:
898 <<: *lttng-tools_steps_copyartifact_defaults
899 project: 'babeltrace_{babelversion}_build/platform=bionic-amd64,conf=std,build=std'
900 - copyartifact:
901 <<: *lttng-tools_steps_copyartifact_defaults
902 project: 'lttng-ust_{ustversion}_build/liburcu_version={urcuversion},platform=bionic-amd64,conf=agents,build=std'
903 - shell:
904 !include-raw-escape: scripts/lttng-tools/prebuild_clean_processes_coredumps.sh
905 - shell:
906 !include-raw-escape: scripts/lttng-tools/release.sh
907
908 publishers:
909 # On build abort (timeout), wait 10 seconds before running the other post
910 # build scripts, this will allow the processes to terminate and make the
911 # build log more legible.
912 - postbuildscript: *lttng-tools_publisher_postbuildscript_wait_10_seconds_on_abort
913
914 # On build failure, try to get partial tap results if any exists
915 - postbuildscript: *lttng-tools_publisher_postbuildscript_collect_tap_on_failure
916
917 # If there are leftover lttng processes or core files present, kill the
918 # processes, collect the core files, delete them and mark the build
919 # unstable.
920 - postbuildscript: *lttng-tools_publisher_postbuildscript_clean_processes_coredumps
921
922 - tap: *lttng-tools_publisher_tap_defaults
923 - raw: *lttng-tools_publisher_warnings-ng_defaults
924 - archive:
925 artifacts: 'out/**'
926 allow-empty: false
927 fingerprint: true
928 - workspace-cleanup: *lttng-tools_publisher_workspace-cleanup_defaults
929 - raw: *lttng-tools_publisher_proc-cleaner_defaults
930 - ircbot: *lttng-tools_publisher_ircbot_defaults
931
932 - job-template:
933 name: lttng-tools_{version}_scan-build
934 defaults: lttng-tools
935 node: 'bionic-amd64'
936
937 triggers:
938 - pollscm:
939 cron: "@daily"
940
941 builders:
942 - copyartifact:
943 <<: *lttng-tools_steps_copyartifact_defaults
944 project: 'liburcu_{urcuversion}_build/platform=bionic-amd64,conf=std,build=std'
945 - copyartifact:
946 <<: *lttng-tools_steps_copyartifact_defaults
947 project: 'lttng-ust_{ustversion}_build/liburcu_version={urcuversion},platform=bionic-amd64,conf=std,build=std'
948 - shell:
949 !include-raw-escape: scripts/common/scan-build.sh
950
951 publishers:
952 - html-publisher:
953 name: 'HTML Report'
954 dir: 'scan-build-archive/'
955 files: 'index.html'
956 - ircbot: *lttng-tools_publisher_ircbot_defaults
957
958 - job-template:
959 name: lttng-tools_{version}_coverity
960 defaults: lttng-tools
961 node: 'bionic-amd64'
962
963 triggers:
964 - pollscm:
965 cron: "@daily"
966
967 wrappers:
968 - ansicolor: *lttng-tools_wrapper_ansicolor_defaults
969 - timeout: *lttng-tools_wrapper_timeout_defaults
970 - timestamps
971 - workspace-cleanup
972 - credentials-binding:
973 - username-password-separated:
974 credential-id: lttng-tools_coverity_token
975 username: COVERITY_SCAN_PROJECT_NAME
976 password: COVERITY_SCAN_TOKEN
977
978 builders:
979 - copyartifact:
980 <<: *lttng-tools_steps_copyartifact_defaults
981 project: 'liburcu_{urcuversion}_build/platform=bionic-amd64,conf=std,build=std'
982 - copyartifact:
983 <<: *lttng-tools_steps_copyartifact_defaults
984 project: 'lttng-ust_{ustversion}_build/liburcu_version={urcuversion},platform=bionic-amd64,conf=std,build=std'
985 - shell:
986 !include-raw-escape: scripts/common/coverity.sh
987
988 publishers:
989 - archive:
990 artifacts: 'analysis-results.tgz,cov-int/**'
991 allow-empty: false
992 - workspace-cleanup: *lttng-tools_publisher_workspace-cleanup_defaults
993 - ircbot: *lttng-tools_publisher_ircbot_defaults
994
995
996 ## Views
997 - view-template:
998 name: 'LTTng-tools'
999 view-type: list
1000 regex: 'lttng-tools[-_].*'
1001
1002
1003 ## Projects
1004 - project:
1005 name: lttng-tools
1006 job_prefix: ''
1007 ust_job_prefix: ''
1008 urcu_job_prefix: ''
1009 bt_job_prefix: ''
1010 github_user: lttng
1011 email_to: 'ci-notification@lists.lttng.org, cc:jgalar@efficios.com'
1012 version:
1013 - stable-2.12
1014 - stable-2.13
1015 - master
1016 jobs:
1017 # Master #
1018 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1019 buildtype: linuxbuild
1020 version: master
1021 ustversion: master
1022 platforms: !!python/tuple [jammy-amd64]
1023 builds: !!python/tuple [std, oot, dist]
1024 confs: !!python/tuple [std, no-ust, agents, debug-rcu, tls_fallback]
1025 urcuversions: !!python/tuple [master]
1026 babelversions: !!python/tuple [stable-2.0, master]
1027 filter: '(build=="std") || ((babeltrace_version=="master" && (conf=="std" || conf=="agents" || conf=="no-ust")))'
1028 touchstone: ''
1029 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1030 buildtype: build
1031 version: master
1032 ustversion: master
1033 platforms: !!python/tuple [bionic-amd64]
1034 builds: !!python/tuple [std, oot, dist]
1035 confs: !!python/tuple [std, no-ust, agents, debug-rcu, tls_fallback]
1036 urcuversions: !!python/tuple [master]
1037 babelversions: !!python/tuple [stable-2.0, master]
1038 filter: '(build=="std") || ((babeltrace_version=="master" && (conf=="std" || conf=="agents" || conf=="no-ust")))'
1039 touchstone: ''
1040 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1041 buildtype: portbuild
1042 version: master
1043 ustversion: master
1044 platforms: !!python/tuple [deb11-armhf, deb11-arm64, deb12-ppc64el, deb11-i386]
1045 builds: !!python/tuple [std]
1046 confs: !!python/tuple [std, no-ust, agents]
1047 urcuversions: !!python/tuple [master]
1048 babelversions: !!python/tuple [stable-2.0]
1049 filter: ''
1050 touchstone: ''
1051 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1052 buildtype: slesbuild
1053 version: master
1054 ustversion: master
1055 platforms: !!python/tuple [sles12sp5-amd64, sles15sp4-amd64]
1056 builds: !!python/tuple [std]
1057 confs: !!python/tuple [agents]
1058 urcuversions: !!python/tuple [master]
1059 babelversions: !!python/tuple [stable-2.0]
1060 filter: ''
1061 touchstone: ''
1062 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1063 buildtype: elbuild
1064 version: master
1065 ustversion: master
1066 platforms: !!python/tuple [el7-amd64, el8-amd64, el9-amd64, el7-arm64, el8-arm64, el9-arm64]
1067 builds: !!python/tuple [std]
1068 confs: !!python/tuple [std]
1069 urcuversions: !!python/tuple [master]
1070 babelversions: !!python/tuple [stable-2.0]
1071 filter: ''
1072 touchstone: ''
1073 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1074 buildtype: yoctobuild
1075 version: master
1076 ustversion: master
1077 platforms: !!python/tuple [yocto23-powerpcspe, yocto23-powerpc, yocto31-ppc64]
1078 builds: !!python/tuple [std]
1079 confs: !!python/tuple [std]
1080 urcuversions: !!python/tuple [master]
1081 babelversions: !!python/tuple [stable-2.0]
1082 filter: ''
1083 touchstone: ''
1084 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1085 buildtype: macosbuild
1086 version: master
1087 ustversion: master
1088 platforms: !!python/tuple [macos-amd64, macos-arm64]
1089 builds: !!python/tuple [std]
1090 confs: !!python/tuple [relayd-only]
1091 urcuversions: !!python/tuple [master]
1092 babelversions: !!python/tuple [stable-2.0]
1093 filter: ''
1094 touchstone: ''
1095 - 'lttng-tools_{version}_winbuild':
1096 version: master
1097 ustversion: master
1098 platforms: !!python/tuple [cygwin64]
1099 builds: !!python/tuple [std]
1100 confs: !!python/tuple [relayd-only]
1101 urcuversions: !!python/tuple [master]
1102 babelversions: !!python/tuple [stable-2.0]
1103 filter: ''
1104 touchstone: ''
1105 - '{job_prefix}lttng-tools_{version}_long_regression':
1106 buildtype: build
1107 version: master
1108 ustversion: master
1109 platforms: !!python/tuple [bionic-amd64]
1110 builds: !!python/tuple [std]
1111 confs: !!python/tuple [std]
1112 urcuversions: !!python/tuple [master]
1113 babelversions: !!python/tuple [stable-2.0]
1114 filter: ''
1115 touchstone: ''
1116 - '{job_prefix}lttng-tools_{version}_rootbuild':
1117 buildtype: build
1118 version: master
1119 ustversion: master
1120 platforms: !!python/tuple [bionic-amd64]
1121 builds: !!python/tuple [std]
1122 confs: !!python/tuple [agents]
1123 urcuversions: !!python/tuple [master]
1124 babelversions: !!python/tuple [stable-2.0]
1125 filter: '(node=="amd64-rootnode" && platform=="bionic-amd64")'
1126 touchstone: ''
1127 - '{job_prefix}lttng-tools_{version}_rootbuild_i386':
1128 buildtype: portbuild
1129 version: master
1130 ustversion: master
1131 platforms: !!python/tuple [deb11-i386]
1132 builds: !!python/tuple [std]
1133 confs: !!python/tuple [agents]
1134 urcuversions: !!python/tuple [master]
1135 babelversions: !!python/tuple [stable-2.0]
1136 filter: '(node=="i386-rootnode" && platform=="deb11-i386")'
1137 touchstone: ''
1138 - 'lttng-tools_{version}_scan-build':
1139 version: master
1140 urcuversion: master
1141 ustversion: master
1142 - 'lttng-tools_{version}_coverity':
1143 version: master
1144 urcuversion: master
1145 ustversion: master
1146
1147 # stable-2.13
1148 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1149 buildtype: linuxbuild
1150 version: stable-2.13
1151 ustversion: stable-2.13
1152 platforms: !!python/tuple [jammy-amd64]
1153 builds: !!python/tuple [std, oot, dist]
1154 confs: !!python/tuple [std, no-ust, agents, debug-rcu, tls_fallback]
1155 urcuversions: !!python/tuple [stable-0.13]
1156 babelversions: !!python/tuple [stable-2.0]
1157 filter: '(build=="std") || ((babeltrace_version=="stable-2.0" && (conf=="std" || conf=="agents" || conf=="no-ust")))'
1158 touchstone: ''
1159 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1160 buildtype: build
1161 version: stable-2.13
1162 ustversion: stable-2.13
1163 platforms: !!python/tuple [bionic-amd64]
1164 builds: !!python/tuple [std, oot, dist]
1165 confs: !!python/tuple [std, no-ust, agents, debug-rcu, tls_fallback]
1166 urcuversions: !!python/tuple [stable-0.13]
1167 babelversions: !!python/tuple [stable-2.0]
1168 filter: '(build=="std") || ((babeltrace_version=="stable-2.0" && (conf=="std" || conf=="agents" || conf=="no-ust")))'
1169 touchstone: ''
1170 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1171 buildtype: portbuild
1172 version: stable-2.13
1173 ustversion: stable-2.13
1174 platforms: !!python/tuple [deb11-armhf, deb11-arm64, deb12-ppc64el, deb11-i386]
1175 builds: !!python/tuple [std]
1176 confs: !!python/tuple [std, no-ust, agents]
1177 urcuversions: !!python/tuple [stable-0.13]
1178 babelversions: !!python/tuple [stable-2.0]
1179 filter: ''
1180 touchstone: ''
1181 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1182 buildtype: slesbuild
1183 version: stable-2.13
1184 ustversion: stable-2.13
1185 platforms: !!python/tuple [sles12sp5-amd64, sles15sp4-amd64]
1186 builds: !!python/tuple [std]
1187 confs: !!python/tuple [agents]
1188 urcuversions: !!python/tuple [stable-0.13]
1189 babelversions: !!python/tuple [stable-2.0]
1190 filter: ''
1191 touchstone: ''
1192 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1193 buildtype: elbuild
1194 version: stable-2.13
1195 ustversion: stable-2.13
1196 platforms: !!python/tuple [el7-amd64, el8-amd64, el9-amd64, el7-arm64, el8-arm64, el9-arm64]
1197 builds: !!python/tuple [std]
1198 confs: !!python/tuple [std]
1199 urcuversions: !!python/tuple [stable-0.13]
1200 babelversions: !!python/tuple [stable-2.0]
1201 filter: ''
1202 touchstone: ''
1203 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1204 buildtype: yoctobuild
1205 version: stable-2.13
1206 ustversion: stable-2.13
1207 platforms: !!python/tuple [yocto23-powerpcspe, yocto23-powerpc, yocto31-ppc64]
1208 builds: !!python/tuple [std]
1209 confs: !!python/tuple [std]
1210 urcuversions: !!python/tuple [stable-0.13]
1211 babelversions: !!python/tuple [stable-2.0]
1212 filter: ''
1213 touchstone: ''
1214 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1215 buildtype: macosbuild
1216 version: stable-2.13
1217 ustversion: stable-2.13
1218 platforms: !!python/tuple [macos-amd64, macos-arm64]
1219 builds: !!python/tuple [std]
1220 confs: !!python/tuple [relayd-only]
1221 urcuversions: !!python/tuple [stable-0.13]
1222 babelversions: !!python/tuple [stable-2.0]
1223 filter: ''
1224 touchstone: ''
1225 - 'lttng-tools_{version}_winbuild':
1226 version: stable-2.13
1227 ustversion: stable-2.13
1228 platforms: !!python/tuple [cygwin64]
1229 builds: !!python/tuple [std]
1230 confs: !!python/tuple [relayd-only]
1231 urcuversions: !!python/tuple [stable-0.13]
1232 babelversions: !!python/tuple [stable-2.0]
1233 filter: ''
1234 touchstone: ''
1235 - '{job_prefix}lttng-tools_{version}_long_regression':
1236 buildtype: build
1237 version: stable-2.13
1238 ustversion: stable-2.13
1239 platforms: !!python/tuple [bionic-amd64]
1240 builds: !!python/tuple [std]
1241 confs: !!python/tuple [std]
1242 urcuversions: !!python/tuple [stable-0.13]
1243 babelversions: !!python/tuple [stable-2.0]
1244 filter: ''
1245 touchstone: ''
1246 - '{job_prefix}lttng-tools_{version}_rootbuild':
1247 buildtype: build
1248 version: stable-2.13
1249 ustversion: stable-2.13
1250 platforms: !!python/tuple [bionic-amd64]
1251 builds: !!python/tuple [std]
1252 confs: !!python/tuple [agents]
1253 urcuversions: !!python/tuple [stable-0.13]
1254 babelversions: !!python/tuple [stable-2.0]
1255 filter: '(node=="amd64-rootnode" && platform=="bionic-amd64")'
1256 touchstone: ''
1257 - 'lttng-tools_{version}_release':
1258 version: v2.13
1259 ustversion: stable-2.13
1260 urcuversion: stable-0.13
1261 babelversion: stable-2.0
1262 - 'lttng-tools_{version}_scan-build':
1263 version: stable-2.13
1264 urcuversion: stable-0.13
1265 ustversion: stable-2.13
1266
1267 # stable-2.12
1268 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1269 buildtype: linuxbuild
1270 version: stable-2.12
1271 ustversion: stable-2.12
1272 platforms: !!python/tuple [jammy-amd64]
1273 builds: !!python/tuple [std, oot, dist]
1274 confs: !!python/tuple [std, no-ust, agents, debug-rcu, tls_fallback]
1275 urcuversions: !!python/tuple [stable-0.13]
1276 babelversions: !!python/tuple [stable-2.0]
1277 filter: '(build=="std") || ((babeltrace_version=="stable-2.0" && (conf=="std" || conf=="agents" || conf=="no-ust")))'
1278 touchstone: ''
1279 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1280 buildtype: build
1281 version: stable-2.12
1282 ustversion: stable-2.12
1283 platforms: !!python/tuple [bionic-amd64]
1284 builds: !!python/tuple [std, oot, dist]
1285 confs: !!python/tuple [std, no-ust, agents, debug-rcu, tls_fallback]
1286 urcuversions: !!python/tuple [stable-0.13]
1287 babelversions: !!python/tuple [stable-2.0]
1288 filter: '(build=="std") || ((babeltrace_version=="stable-2.0" && (conf=="std" || conf=="agents" || conf=="no-ust")))'
1289 touchstone: ''
1290 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1291 buildtype: portbuild
1292 version: stable-2.12
1293 ustversion: stable-2.12
1294 platforms: !!python/tuple [deb11-armhf, deb11-arm64, deb12-ppc64el, deb11-i386]
1295 builds: !!python/tuple [std]
1296 confs: !!python/tuple [std, no-ust, agents]
1297 urcuversions: !!python/tuple [stable-0.13]
1298 babelversions: !!python/tuple [stable-2.0]
1299 filter: ''
1300 touchstone: ''
1301 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1302 buildtype: slesbuild
1303 version: stable-2.12
1304 ustversion: stable-2.12
1305 platforms: !!python/tuple [sles12sp5-amd64, sles15sp4-amd64]
1306 builds: !!python/tuple [std]
1307 confs: !!python/tuple [agents]
1308 urcuversions: !!python/tuple [stable-0.13]
1309 babelversions: !!python/tuple [stable-2.0]
1310 filter: ''
1311 touchstone: ''
1312 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1313 buildtype: elbuild
1314 version: stable-2.12
1315 ustversion: stable-2.12
1316 platforms: !!python/tuple [el7-amd64, el8-amd64, el9-amd64, el7-arm64, el8-arm64, el9-arm64]
1317 builds: !!python/tuple [std]
1318 confs: !!python/tuple [std]
1319 urcuversions: !!python/tuple [stable-0.13]
1320 babelversions: !!python/tuple [stable-2.0]
1321 filter: ''
1322 touchstone: ''
1323 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1324 buildtype: yoctobuild
1325 version: stable-2.12
1326 ustversion: stable-2.12
1327 platforms: !!python/tuple [yocto23-powerpcspe, yocto23-powerpc, yocto31-ppc64]
1328 builds: !!python/tuple [std]
1329 confs: !!python/tuple [std]
1330 urcuversions: !!python/tuple [stable-0.13]
1331 babelversions: !!python/tuple [stable-2.0]
1332 filter: ''
1333 touchstone: ''
1334 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1335 buildtype: macosbuild
1336 version: stable-2.12
1337 ustversion: stable-2.12
1338 platforms: !!python/tuple [macos-amd64, macos-arm64]
1339 builds: !!python/tuple [std]
1340 confs: !!python/tuple [relayd-only]
1341 urcuversions: !!python/tuple [stable-0.13]
1342 babelversions: !!python/tuple [stable-2.0]
1343 filter: ''
1344 touchstone: ''
1345 - 'lttng-tools_{version}_winbuild':
1346 version: stable-2.12
1347 ustversion: stable-2.12
1348 platforms: !!python/tuple [cygwin64]
1349 builds: !!python/tuple [std]
1350 confs: !!python/tuple [relayd-only]
1351 urcuversions: !!python/tuple [stable-0.13]
1352 babelversions: !!python/tuple [stable-2.0]
1353 filter: ''
1354 touchstone: ''
1355 - '{job_prefix}lttng-tools_{version}_long_regression':
1356 buildtype: build
1357 version: stable-2.12
1358 ustversion: stable-2.12
1359 platforms: !!python/tuple [bionic-amd64]
1360 builds: !!python/tuple [std]
1361 confs: !!python/tuple [std]
1362 urcuversions: !!python/tuple [stable-0.13]
1363 babelversions: !!python/tuple [stable-2.0]
1364 filter: ''
1365 touchstone: ''
1366 - '{job_prefix}lttng-tools_{version}_rootbuild':
1367 buildtype: build
1368 version: stable-2.12
1369 ustversion: stable-2.12
1370 platforms: !!python/tuple [bionic-amd64]
1371 builds: !!python/tuple [std]
1372 confs: !!python/tuple [agents]
1373 urcuversions: !!python/tuple [stable-0.13]
1374 babelversions: !!python/tuple [stable-2.0]
1375 filter: '(node=="amd64-rootnode" && platform=="bionic-amd64")'
1376 touchstone: ''
1377 - 'lttng-tools_{version}_release':
1378 version: v2.12
1379 ustversion: stable-2.12
1380 urcuversion: stable-0.13
1381 babelversion: stable-2.0
1382 - 'lttng-tools_{version}_scan-build':
1383 version: stable-2.12
1384 urcuversion: stable-0.13
1385 ustversion: stable-2.12
1386
1387 - project:
1388 name: dev_upstream_lttng-tools
1389 job_prefix: 'dev_upstream_'
1390 ust_job_prefix: 'dev_upstream_'
1391 urcu_job_prefix: 'dev_upstream_'
1392 bt_job_prefix: 'dev_upstream_'
1393 github_user: lttng
1394 email_to: 'ci-notification@lists.lttng.org, cc:jgalar@efficios.com'
1395 jobs:
1396 # stable-2.11
1397 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1398 buildtype: linuxbuild
1399 version: stable-2.11
1400 ustversion: stable-2.11
1401 platforms: !!python/tuple [jammy-amd64]
1402 builds: !!python/tuple [std, oot, dist]
1403 confs: !!python/tuple [std, no-ust, agents, debug-rcu, tls_fallback]
1404 urcuversions: !!python/tuple [stable-0.11]
1405 babelversions: !!python/tuple [stable-1.5]
1406 filter: '(build=="std") || (conf=="std" || conf=="agents" || conf=="no-ust")'
1407 touchstone: ''
1408 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1409 buildtype: portbuild
1410 version: stable-2.11
1411 ustversion: stable-2.11
1412 platforms: !!python/tuple [deb11-armhf, deb11-arm64, deb12-ppc64el, deb11-i386]
1413 builds: !!python/tuple [std]
1414 confs: !!python/tuple [no-ust, agents]
1415 urcuversions: !!python/tuple [stable-0.11]
1416 babelversions: !!python/tuple [stable-1.5]
1417 filter: ''
1418 touchstone: ''
1419 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1420 buildtype: slesbuild
1421 version: stable-2.11
1422 ustversion: stable-2.11
1423 platforms: !!python/tuple [sles12sp5-amd64, sles15sp4-amd64]
1424 builds: !!python/tuple [std]
1425 confs: !!python/tuple [agents]
1426 urcuversions: !!python/tuple [stable-0.11]
1427 babelversions: !!python/tuple [stable-1.5]
1428 filter: ''
1429 touchstone: ''
1430 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1431 buildtype: elbuild
1432 version: stable-2.11
1433 ustversion: stable-2.11
1434 platforms: !!python/tuple [el7-amd64, el8-amd64, el9-amd64]
1435 builds: !!python/tuple [std]
1436 confs: !!python/tuple [std]
1437 urcuversions: !!python/tuple [stable-0.11]
1438 babelversions: !!python/tuple [stable-1.5]
1439 filter: ''
1440 touchstone: ''
1441
1442 # stable-2.10
1443 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1444 buildtype: linuxbuild
1445 version: stable-2.10
1446 ustversion: stable-2.10
1447 platforms: !!python/tuple [jammy-amd64]
1448 builds: !!python/tuple [std, oot, dist]
1449 confs: !!python/tuple [std, no-ust, agents, debug-rcu, tls_fallback]
1450 urcuversions: !!python/tuple [stable-0.9]
1451 babelversions: !!python/tuple [stable-1.5]
1452 filter: '(build=="std") || (conf=="std" || conf=="agents" || conf=="no-ust")'
1453 touchstone: ''
1454 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1455 buildtype: portbuild
1456 version: stable-2.10
1457 ustversion: stable-2.10
1458 platforms: !!python/tuple [deb11-armhf, deb11-arm64, deb12-ppc64el, deb11-i386]
1459 builds: !!python/tuple [std]
1460 confs: !!python/tuple [no-ust, agents]
1461 urcuversions: !!python/tuple [stable-0.9]
1462 babelversions: !!python/tuple [stable-1.5]
1463 filter: ''
1464 touchstone: ''
1465 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1466 buildtype: slesbuild
1467 version: stable-2.10
1468 ustversion: stable-2.10
1469 platforms: !!python/tuple [sles12sp5-amd64, sles15sp4-amd64]
1470 builds: !!python/tuple [std]
1471 confs: !!python/tuple [agents]
1472 urcuversions: !!python/tuple [stable-0.9]
1473 babelversions: !!python/tuple [stable-1.5]
1474 filter: ''
1475 touchstone: ''
1476 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1477 buildtype: elbuild
1478 version: stable-2.10
1479 ustversion: stable-2.10
1480 platforms: !!python/tuple [el7-amd64, el8-amd64, el9-amd64]
1481 builds: !!python/tuple [std]
1482 confs: !!python/tuple [std]
1483 urcuversions: !!python/tuple [stable-0.9]
1484 babelversions: !!python/tuple [stable-1.5]
1485 filter: ''
1486 touchstone: ''
1487
1488 - project:
1489 name: dev_jgalar_lttng-tools
1490 job_prefix: 'dev_jgalar_'
1491 ust_job_prefix: ''
1492 urcu_job_prefix: ''
1493 bt_job_prefix: ''
1494 user: jgalar
1495 github_user: jgalar
1496 email_to: 'jgalar@efficios.com'
1497 jobs:
1498 # Master
1499 - 'dev_{user}_lttng-tools_{version}_{buildtype}':
1500 buildtype: build
1501 version: master-staging
1502 ustversion: master
1503 platforms: !!python/tuple [bionic-amd64]
1504 builds: !!python/tuple [std, oot, dist]
1505 confs: !!python/tuple [std, no-ust, agents]
1506 urcuversions: !!python/tuple [master]
1507 babelversions: !!python/tuple [stable-2.0, master]
1508 filter: ''
1509 touchstone: ''
1510 - 'dev_{user}_lttng-tools_{version}_{buildtype}':
1511 buildtype: portbuild
1512 version: master-staging
1513 ustversion: master
1514 platforms: !!python/tuple [deb11-armhf, deb11-arm64, deb12-ppc64el, deb11-i386]
1515 builds: !!python/tuple [std]
1516 confs: !!python/tuple [std, no-ust, agents]
1517 urcuversions: !!python/tuple [master]
1518 babelversions: !!python/tuple [stable-1.5, master]
1519 filter: ''
1520 touchstone: ''
1521 - 'dev_{user}_lttng-tools_{version}_{buildtype}':
1522 buildtype: macosbuild
1523 version: master-staging
1524 ustversion: master
1525 platforms: !!python/tuple [macos-amd64, macos-arm64]
1526 builds: !!python/tuple [std]
1527 confs: !!python/tuple [relayd-only]
1528 urcuversions: !!python/tuple [master]
1529 babelversions: !!python/tuple [stable-2.0]
1530 filter: ''
1531 touchstone: ''
1532
1533 # stable-2.13
1534 - 'dev_{user}_lttng-tools_{version}_{buildtype}':
1535 buildtype: build
1536 version: stable-2.13-staging
1537 ustversion: stable-2.13
1538 platforms: !!python/tuple [bionic-amd64]
1539 builds: !!python/tuple [std, oot, dist]
1540 confs: !!python/tuple [std, no-ust, agents]
1541 urcuversions: !!python/tuple [stable-0.13]
1542 babelversions: !!python/tuple [stable-2.0, master]
1543 filter: ''
1544 touchstone: ''
1545 - 'dev_{user}_lttng-tools_{version}_{buildtype}':
1546 buildtype: portbuild
1547 version: stable-2.13-staging
1548 ustversion: stable-2.13
1549 platforms: !!python/tuple [deb11-armhf, deb11-arm64, deb12-ppc64el, deb11-i386]
1550 builds: !!python/tuple [std]
1551 confs: !!python/tuple [std, no-ust, agents]
1552 urcuversions: !!python/tuple [stable-0.13]
1553 babelversions: !!python/tuple [stable-2.0]
1554 filter: ''
1555 touchstone: ''
1556
1557 # stable-2.12
1558 - 'dev_{user}_lttng-tools_{version}_{buildtype}':
1559 buildtype: build
1560 version: stable-2.12-staging
1561 ustversion: stable-2.12
1562 platforms: !!python/tuple [bionic-amd64]
1563 builds: !!python/tuple [std, oot, dist]
1564 confs: !!python/tuple [std, no-ust, agents]
1565 urcuversions: !!python/tuple [stable-0.13]
1566 babelversions: !!python/tuple [stable-2.0, master]
1567 filter: ''
1568 touchstone: ''
1569 - 'dev_{user}_lttng-tools_{version}_{buildtype}':
1570 buildtype: portbuild
1571 version: stable-2.12-staging
1572 ustversion: stable-2.12
1573 platforms: !!python/tuple [deb11-armhf, deb11-arm64, deb12-ppc64el, deb11-i386]
1574 builds: !!python/tuple [std]
1575 confs: !!python/tuple [std, no-ust, agents]
1576 urcuversions: !!python/tuple [stable-0.13]
1577 babelversions: !!python/tuple [stable-2.0]
1578 filter: ''
1579 touchstone: ''
1580
1581 - project:
1582 name: dev_jgalar_lttng-tools-upstream
1583 job_prefix: 'dev_jgalar_'
1584 ust_job_prefix: 'dev_upstream_'
1585 urcu_job_prefix: 'dev_upstream_'
1586 bt_job_prefix: 'dev_upstream_'
1587 user: jgalar
1588 github_user: jgalar
1589 email_to: 'jgalar@efficios.com'
1590 jobs:
1591 # stable-2.11
1592 - 'dev_{user}_lttng-tools_{version}_{buildtype}':
1593 buildtype: build
1594 version: stable-2.11-staging
1595 ustversion: stable-2.11
1596 platforms: !!python/tuple [bionic-amd64]
1597 builds: !!python/tuple [std, oot, dist]
1598 confs: !!python/tuple [std, no-ust, agents]
1599 urcuversions: !!python/tuple [stable-0.11]
1600 babelversions: !!python/tuple [stable-1.5]
1601 filter: ''
1602 touchstone: ''
1603 - 'dev_{user}_lttng-tools_{version}_{buildtype}':
1604 buildtype: portbuild
1605 version: stable-2.11-staging
1606 ustversion: stable-2.11
1607 platforms: !!python/tuple [deb11-armhf, deb11-arm64, deb12-ppc64el, deb11-i386]
1608 builds: !!python/tuple [std]
1609 confs: !!python/tuple [std, no-ust, agents]
1610 urcuversions: !!python/tuple [stable-0.11]
1611 babelversions: !!python/tuple [stable-1.5]
1612 filter: ''
1613 touchstone: ''
1614
1615 # stable-2.10
1616 - 'dev_{user}_lttng-tools_{version}_{buildtype}':
1617 buildtype: build
1618 version: stable-2.10-staging
1619 ustversion: stable-2.10
1620 platforms: !!python/tuple [bionic-amd64]
1621 builds: !!python/tuple [std, oot, dist]
1622 confs: !!python/tuple [std, no-ust, agents]
1623 urcuversions: !!python/tuple [stable-0.9]
1624 babelversions: !!python/tuple [stable-1.5]
1625 filter: ''
1626 touchstone: ''
1627 - 'dev_{user}_lttng-tools_{version}_{buildtype}':
1628 buildtype: portbuild
1629 version: stable-2.10-staging
1630 ustversion: stable-2.10
1631 platforms: !!python/tuple [deb11-armhf, deb11-arm64, deb12-ppc64el, deb11-i386]
1632 builds: !!python/tuple [std]
1633 confs: !!python/tuple [std, no-ust, agents]
1634 urcuversions: !!python/tuple [stable-0.9]
1635 babelversions: !!python/tuple [stable-1.5]
1636 filter: ''
1637 touchstone: ''
1638
1639 - project:
1640 name: review-lttng-tools
1641 job_prefix: ''
1642 ust_job_prefix: ''
1643 urcu_job_prefix: ''
1644 bt_job_prefix: ''
1645 github_user: lttng
1646 jobs:
1647 ## Master ##
1648 - 'dev_review_lttng-tools_{version}_{buildtype}':
1649 version: master
1650 buildtype: build
1651 platforms: !!python/tuple [bionic-amd64]
1652 builds: !!python/tuple [std, oot, dist, oot-dist]
1653 confs: !!python/tuple [std, no-ust, agents]
1654 urcuversions: !!python/tuple [stable-0.14] # Baseline is stable-0.14 for C++ support
1655 babelversions: !!python/tuple [stable-2.0]
1656 filter: ''
1657 touchstone: ''
1658 - 'dev_review_lttng-tools_{version}_rootbuild':
1659 version: master
1660 buildtype: build
1661 platforms: !!python/tuple [bionic-amd64]
1662 builds: !!python/tuple [std]
1663 confs: !!python/tuple [agents]
1664 urcuversions: !!python/tuple [stable-0.14] # Baseline is stable-0.14 for C++ support
1665 babelversions: !!python/tuple [stable-2.0]
1666 filter: '(node=="amd64-rootnode" && platform=="bionic-amd64")'
1667 touchstone: ''
1668 - 'dev_review_lttng-tools_{version}_smokebuild':
1669 version: master
1670 buildtype: linuxbuild
1671 platforms: !!python/tuple [jammy-amd64]
1672 builds: !!python/tuple [oot-dist]
1673 confs: !!python/tuple [agents]
1674 urcuversions: !!python/tuple [stable-0.14] # Baseline is stable-0.14 for C++ support
1675 babelversions: !!python/tuple [stable-2.0]
1676 filter: ''
1677 touchstone: ''
1678 - 'dev_review_lttng-tools_{version}_clang-tidy':
1679 version: master
1680 buildtype: linuxbuild
1681 platforms: !!python/tuple [jammy-amd64]
1682 builds: !!python/tuple [std]
1683 confs: !!python/tuple [agents]
1684 urcuversions: !!python/tuple [stable-0.14] # Baseline is stable-0.14 for C++ support
1685 babelversions: !!python/tuple [stable-2.0]
1686 filter: ''
1687 touchstone: ''
1688 - 'dev_review_lttng-tools_{version}_check-format':
1689 version: master
1690
1691 ## Stable 2.13 ##
1692 - 'dev_review_lttng-tools_{version}_{buildtype}':
1693 version: stable-2.13
1694 buildtype: build
1695 platforms: !!python/tuple [bionic-amd64]
1696 builds: !!python/tuple [std, oot, dist, oot-dist]
1697 confs: !!python/tuple [std, no-ust, agents]
1698 urcuversions: !!python/tuple [stable-0.13]
1699 babelversions: !!python/tuple [stable-2.0]
1700 filter: ''
1701 touchstone: ''
1702 - 'dev_review_lttng-tools_{version}_rootbuild':
1703 version: stable-2.13
1704 buildtype: build
1705 platforms: !!python/tuple [bionic-amd64]
1706 builds: !!python/tuple [std]
1707 confs: !!python/tuple [agents]
1708 urcuversions: !!python/tuple [stable-0.13]
1709 babelversions: !!python/tuple [stable-2.0]
1710 filter: '(node=="amd64-rootnode" && platform=="bionic-amd64")'
1711 touchstone: ''
1712
1713 ## Stable 2.12 ##
1714 - 'dev_review_lttng-tools_{version}_{buildtype}':
1715 version: stable-2.12
1716 buildtype: build
1717 platforms: !!python/tuple [bionic-amd64]
1718 builds: !!python/tuple [std, oot, dist, oot-dist]
1719 confs: !!python/tuple [std, no-ust, agents]
1720 urcuversions: !!python/tuple [stable-0.13]
1721 babelversions: !!python/tuple [stable-2.0]
1722 filter: ''
1723 touchstone: ''
1724 - 'dev_review_lttng-tools_{version}_rootbuild':
1725 version: stable-2.12
1726 buildtype: build
1727 platforms: !!python/tuple [bionic-amd64]
1728 builds: !!python/tuple [std]
1729 confs: !!python/tuple [agents]
1730 urcuversions: !!python/tuple [stable-0.13]
1731 babelversions: !!python/tuple [stable-2.0]
1732 filter: '(node=="amd64-rootnode" && platform=="bionic-amd64")'
1733 touchstone: ''
1734
1735 - project:
1736 name: lttng-tools-views
1737 views:
1738 - LTTng-tools
This page took 0.061283 seconds and 5 git commands to generate.