jjb: lttng-tools: remove process cleaner from rootbuild jobs
[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_rootbuild: &lttng-tools_publishers_rootbuild
504 name: 'lttng-tools_publishers_rootbuild'
505 publishers:
506 - postbuildscript: *lttng-tools_publisher_postbuildscript_wait_10_seconds_on_abort
507 - postbuildscript: *lttng-tools_publisher_postbuildscript_collect_tap_on_failure
508 - postbuildscript: *lttng-tools_publisher_postbuildscript_clean_processes_coredumps
509 - tap: *lttng-tools_publisher_tap_defaults
510 - raw: *lttng-tools_publisher_warnings-ng_defaults
511 - archive: *lttng-tools_publisher_archive_defaults
512 - workspace-cleanup: *lttng-tools_publisher_workspace-cleanup_defaults
513 - ircbot: *lttng-tools_publisher_ircbot_defaults
514 - email-ext: *lttng-tools_publisher_email-ext_defaults
515
516 - _lttng-tools_publishers_win: &lttng-tools_publishers_win
517 name: 'lttng-tools_publishers_win'
518 publishers:
519 - tap: *lttng-tools_publisher_tap_defaults
520 - raw: *lttng-tools_publisher_warnings-ng_defaults
521 - archive: *lttng-tools_publisher_archive_defaults
522 - workspace-cleanup: *lttng-tools_publisher_workspace-cleanup_defaults
523 - raw: *lttng-tools_publisher_proc-cleaner_defaults
524 - ircbot: *lttng-tools_publisher_ircbot_defaults
525 - email-ext: *lttng-tools_publisher_email-ext_defaults
526
527
528 ## Templates
529 - job-template:
530 name: '{job_prefix}lttng-tools_{version}_{buildtype}'
531 defaults: lttng-tools
532
533 <<: *lttng-tools_matrix_axes_defaults
534 <<: *lttng-tools_builders_defaults
535 <<: *lttng-tools_publishers_defaults
536
537 triggers:
538 - pollscm: *lttng-tools_trigger_pollscm_default
539 - reverse:
540 jobs: '{ust_job_prefix}lttng-ust_{version}_{buildtype}'
541 result: 'success'
542
543 - job-template:
544 name: 'dev_{user}_lttng-tools_{version}_{buildtype}'
545 defaults: lttng-tools
546
547 <<: *lttng-tools_matrix_axes_defaults
548 <<: *lttng-tools_builders_defaults
549 <<: *lttng-tools_publishers_defaults
550
551 - job-template:
552 name: '{job_prefix}lttng-tools_{version}_long_regression'
553 defaults: lttng-tools
554
555 properties:
556 - inject:
557 properties-content: |
558 PROJECT_NAME=lttng-tools
559 LTTNG_TOOLS_RUN_TESTS_LONG_REGRESSION=yes
560 - build-discarder: *lttng-tools_property_build-discarder_defaults
561 - github: *lttng-tools_property_github_defaults
562
563 wrappers:
564 - ansicolor: *lttng-tools_wrapper_ansicolor_defaults
565 - timeout:
566 <<: *lttng-tools_wrapper_timeout_defaults
567 timeout: 45
568 - timestamps
569 - workspace-cleanup
570 - raw: *lttng-tools_wrapper_proc-cleaner_defaults
571
572 <<: *lttng-tools_matrix_axes_defaults
573 <<: *lttng-tools_builders_defaults
574 <<: *lttng-tools_publishers_defaults
575
576 triggers:
577 - pollscm: *lttng-tools_trigger_pollscm_default
578 - reverse:
579 jobs: '{ust_job_prefix}lttng-ust_{version}_{buildtype}'
580 result: 'success'
581
582 - job-template:
583 name: '{job_prefix}lttng-tools_{version}_rootbuild'
584 defaults: lttng-tools
585
586 scm:
587 - git: *lttng-tools_scm_git_default
588
589 wrappers:
590 - ansicolor: *lttng-tools_wrapper_ansicolor_defaults
591 - timeout:
592 <<: *lttng-tools_wrapper_timeout_defaults
593 timeout: 10
594 - timestamps
595
596 <<: *lttng-tools_matrix_axes_rootbuild
597 <<: *lttng-tools_builders_defaults
598 <<: *lttng-tools_publishers_rootbuild
599
600 triggers:
601 - pollscm: *lttng-tools_trigger_pollscm_default
602 - reverse:
603 jobs: '{ust_job_prefix}lttng-ust_{version}_build'
604 result: 'success'
605
606 - job-template:
607 name: '{job_prefix}lttng-tools_{version}_rootbuild_i386'
608 defaults: lttng-tools
609
610 scm:
611 - git: *lttng-tools_scm_git_default
612
613 wrappers:
614 - ansicolor: *lttng-tools_wrapper_ansicolor_defaults
615 - timeout:
616 <<: *lttng-tools_wrapper_timeout_defaults
617 timeout: 10
618 - timestamps
619
620 <<: *lttng-tools_matrix_axes_rootbuild
621 <<: *lttng-tools_builders_defaults
622 <<: *lttng-tools_publishers_rootbuild
623
624 triggers:
625 - pollscm: *lttng-tools_trigger_pollscm_default
626 - reverse:
627 jobs: '{ust_job_prefix}lttng-ust_{version}_build'
628 result: 'success'
629
630 - job-template:
631 name: lttng-tools_{version}_winbuild
632 defaults: lttng-tools
633
634 <<: *lttng-tools_matrix_axes_defaults
635 <<: *lttng-tools_builders_win
636 <<: *lttng-tools_publishers_win
637
638 - job-template:
639 name: dev_review_lttng-tools_{version}_{buildtype}
640 defaults: lttng-tools
641 concurrent: true
642
643 scm:
644 - git: &lttng-tools_scm_git_review
645 url: https://review.lttng.org/lttng-tools
646 refspec: 'refs/changes/*:refs/changes/*'
647 branches:
648 - '$GERRIT_REFSPEC'
649 basedir: src/lttng-tools
650 skip-tag: true
651
652 triggers:
653 - gerrit: &lttng-tools_trigger_gerrit_default
654 trigger-on:
655 - comment-added-event:
656 approval-category: 'CI-Build'
657 approval-value: 1
658 projects:
659 - project-compare-type: 'PLAIN'
660 project-pattern: 'lttng-tools'
661 branches:
662 - branch-compare-type: 'PLAIN'
663 branch-pattern: '{version}'
664
665 properties:
666 - inject: *lttng-tools_property_inject_defaults
667 - build-discarder:
668 days-to-keep: 1
669 - throttle:
670 option: 'category'
671 categories:
672 - 'gerrit-{buildtype}'
673
674 <<: *lttng-tools_matrix_axes_defaults
675 <<: *lttng-tools_builders_review
676
677 publishers:
678 # On build abort (timeout), wait 10 seconds before running the other post
679 # build scripts, this will allow the processes to terminate and make the
680 # build log more legible.
681 - postbuildscript: *lttng-tools_publisher_postbuildscript_wait_10_seconds_on_abort
682
683 # On build failure, try to get partial tap results if any exists
684 - postbuildscript: *lttng-tools_publisher_postbuildscript_collect_tap_on_failure
685
686 # If there are leftover lttng processes or core files present, kill the
687 # processes, collect the core files, delete them and mark the build
688 # unstable.
689 - postbuildscript: *lttng-tools_publisher_postbuildscript_clean_processes_coredumps
690
691 - tap: *lttng-tools_publisher_tap_defaults
692 - raw: *lttng-tools_publisher_warnings-ng_defaults
693 - archive: *lttng-tools_publisher_archive_defaults
694 - workspace-cleanup: *lttng-tools_publisher_workspace-cleanup_defaults
695 - raw: *lttng-tools_publisher_proc-cleaner_defaults
696
697 - job-template:
698 name: dev_review_lttng-tools_{version}_smokebuild
699 defaults: lttng-tools
700 concurrent: true
701
702 scm:
703 - git: *lttng-tools_scm_git_review
704
705 triggers:
706 - gerrit: &lttng-tools_trigger_gerrit_smoke_1
707 trigger-on:
708 - comment-added-event:
709 approval-category: 'Smoke-Build-Lvl1'
710 approval-value: 1
711 projects:
712 - project-compare-type: 'PLAIN'
713 project-pattern: 'lttng-tools'
714 branches:
715 - branch-compare-type: 'PLAIN'
716 branch-pattern: '{version}'
717 skip-vote:
718 successful: true
719 failed: true
720 unstable: true
721 notbuilt: true
722 aborted: true
723
724 properties:
725 - inject:
726 properties-content: |
727 PROJECT_NAME=lttng-tools
728 LTTNG_TOOLS_RUN_TESTS=no
729 - build-discarder:
730 days-to-keep: 1
731
732 <<: *lttng-tools_matrix_axes_defaults
733 <<: *lttng-tools_builders_review
734
735 publishers:
736 - raw: *lttng-tools_publisher_warnings-ng_defaults
737 - workspace-cleanup: *lttng-tools_publisher_workspace-cleanup_defaults
738 - raw: *lttng-tools_publisher_proc-cleaner_defaults
739
740 - job-template:
741 name: dev_review_lttng-tools_{version}_clang-tidy
742 defaults: lttng-tools
743 concurrent: true
744
745 scm:
746 - git: *lttng-tools_scm_git_review
747
748 triggers:
749 - gerrit: &lttng-tools_trigger_gerrit_smoke_2
750 trigger-on:
751 - comment-added-event:
752 approval-category: 'Smoke-Build-Lvl2'
753 approval-value: 1
754 projects:
755 - project-compare-type: 'PLAIN'
756 project-pattern: 'lttng-tools'
757 branches:
758 - branch-compare-type: 'PLAIN'
759 branch-pattern: '{version}'
760 skip-vote:
761 successful: true
762 failed: true
763 unstable: true
764 notbuilt: true
765 aborted: true
766
767 properties:
768 - inject:
769 properties-content: |
770 PROJECT_NAME=lttng-tools
771 LTTNG_TOOLS_MAKE_INSTALL=no
772 LTTNG_TOOLS_MAKE_CLEAN=no
773 LTTNG_TOOLS_RUN_TESTS=no
774 LTTNG_TOOLS_GEN_COMPILE_COMMANDS=yes
775 LTTNG_TOOLS_CLANG_TIDY=yes
776 - build-discarder:
777 days-to-keep: 1
778
779 <<: *lttng-tools_matrix_axes_defaults
780 <<: *lttng-tools_builders_review
781
782 publishers:
783 - raw:
784 xml: |
785 <io.jenkins.plugins.analysis.core.steps.IssuesRecorder plugin="warnings-ng">
786 <analysisTools>
787 <io.jenkins.plugins.analysis.warnings.ClangTidy>
788 <id/>
789 <name/>
790 <jenkins plugin="plugin-util-api"/>
791 <pattern/>
792 <reportEncoding/>
793 <skipSymbolicLinks>false</skipSymbolicLinks>
794 </io.jenkins.plugins.analysis.warnings.ClangTidy>
795 </analysisTools>
796 <sourceCodeEncoding/>
797 <sourceDirectory/>
798 <sourceDirectories/>
799 <ignoreQualityGate>false</ignoreQualityGate>
800 <ignoreFailedBuilds>true</ignoreFailedBuilds>
801 <failOnError>false</failOnError>
802 <healthy>0</healthy>
803 <unhealthy>0</unhealthy>
804 <minimumSeverity plugin="analysis-model-api">
805 <name>LOW</name>
806 </minimumSeverity>
807 <filters/>
808 <isEnabledForFailure>true</isEnabledForFailure>
809 <isAggregatingResults>true</isAggregatingResults>
810 <isBlameDisabled>false</isBlameDisabled>
811 <skipPublishingChecks>true</skipPublishingChecks>
812 <publishAllIssues>false</publishAllIssues>
813 <qualityGates>
814 <io.jenkins.plugins.analysis.core.util.QualityGate>
815 <status>FAILED</status>
816 <threshold>1</threshold>
817 <type>TOTAL</type>
818 </io.jenkins.plugins.analysis.core.util.QualityGate>
819 </qualityGates>
820 <trendChartType>AGGREGATION_TOOLS</trendChartType>
821 <scm/>
822 </io.jenkins.plugins.analysis.core.steps.IssuesRecorder>
823 - archive:
824 artifacts: 'clang-tidy-fixes.diff'
825 allow-empty: true
826 - workspace-cleanup: *lttng-tools_publisher_workspace-cleanup_defaults
827 - raw: *lttng-tools_publisher_proc-cleaner_defaults
828
829 - job-template:
830 name: dev_review_lttng-tools_{version}_rootbuild
831 defaults: lttng-tools
832 concurrent: true
833
834 scm:
835 - git: *lttng-tools_scm_git_review
836
837 triggers:
838 - gerrit: *lttng-tools_trigger_gerrit_default
839
840 properties:
841 - inject: *lttng-tools_property_inject_defaults
842 - build-discarder:
843 days-to-keep: 1
844 - throttle:
845 option: 'category'
846 categories:
847 - 'gerrit-{buildtype}'
848
849 <<: *lttng-tools_matrix_axes_rootbuild
850 <<: *lttng-tools_builders_review
851
852 publishers:
853 - tap: *lttng-tools_publisher_tap_defaults
854 - raw: *lttng-tools_publisher_warnings-ng_defaults
855 - archive: *lttng-tools_publisher_archive_defaults
856 - workspace-cleanup: *lttng-tools_publisher_workspace-cleanup_defaults
857
858 - job-template:
859 name: 'dev_review_lttng-tools_{version}_check-format'
860 defaults: lttng-tools
861 concurrent: true
862
863 scm:
864 - git: *lttng-tools_scm_git_review
865
866 triggers:
867 - gerrit: *lttng-tools_trigger_gerrit_smoke_1
868
869 node: 'jammy-amd64'
870
871 builders:
872 - shell:
873 !include-raw-escape: scripts/common/check-format.sh
874
875 properties:
876 - inject: *lttng-tools_property_inject_defaults
877 - build-discarder:
878 days-to-keep: 1
879
880 publishers:
881 - archive:
882 artifacts: 'clang-format-fixes.diff'
883 allow-empty: true
884 - workspace-cleanup: *lttng-tools_publisher_workspace-cleanup_defaults
885
886 - job-template:
887 name: lttng-tools_{version}_release
888 defaults: lttng-tools
889 node: 'bionic-amd64'
890
891 triggers:
892 - pollscm:
893 cron: "@daily"
894
895 scm:
896 - git:
897 url: https://github.com/{github_user}/lttng-tools.git
898 browser: githubweb
899 browser-url: https://github.com/{github_user}/lttng-tools
900 refspec: '+refs/tags/*:refs/remotes/origin/tags/*'
901 branches:
902 - '*/tags/{version}.*'
903 basedir: src/lttng-tools
904
905 builders:
906 - copyartifact:
907 <<: *lttng-tools_steps_copyartifact_defaults
908 project: 'liburcu_{urcuversion}_build/platform=bionic-amd64,conf=std,build=std'
909 - copyartifact:
910 <<: *lttng-tools_steps_copyartifact_defaults
911 project: 'babeltrace_{babelversion}_build/platform=bionic-amd64,conf=std,build=std'
912 - copyartifact:
913 <<: *lttng-tools_steps_copyartifact_defaults
914 project: 'lttng-ust_{ustversion}_build/liburcu_version={urcuversion},platform=bionic-amd64,conf=agents,build=std'
915 - shell:
916 !include-raw-escape: scripts/lttng-tools/prebuild_clean_processes_coredumps.sh
917 - shell:
918 !include-raw-escape: scripts/lttng-tools/release.sh
919
920 publishers:
921 # On build abort (timeout), wait 10 seconds before running the other post
922 # build scripts, this will allow the processes to terminate and make the
923 # build log more legible.
924 - postbuildscript: *lttng-tools_publisher_postbuildscript_wait_10_seconds_on_abort
925
926 # On build failure, try to get partial tap results if any exists
927 - postbuildscript: *lttng-tools_publisher_postbuildscript_collect_tap_on_failure
928
929 # If there are leftover lttng processes or core files present, kill the
930 # processes, collect the core files, delete them and mark the build
931 # unstable.
932 - postbuildscript: *lttng-tools_publisher_postbuildscript_clean_processes_coredumps
933
934 - tap: *lttng-tools_publisher_tap_defaults
935 - raw: *lttng-tools_publisher_warnings-ng_defaults
936 - archive:
937 artifacts: 'out/**'
938 allow-empty: false
939 fingerprint: true
940 - workspace-cleanup: *lttng-tools_publisher_workspace-cleanup_defaults
941 - raw: *lttng-tools_publisher_proc-cleaner_defaults
942 - ircbot: *lttng-tools_publisher_ircbot_defaults
943
944 - job-template:
945 name: lttng-tools_{version}_scan-build
946 defaults: lttng-tools
947 node: 'bionic-amd64'
948
949 triggers:
950 - pollscm:
951 cron: "@daily"
952
953 builders:
954 - copyartifact:
955 <<: *lttng-tools_steps_copyartifact_defaults
956 project: 'liburcu_{urcuversion}_build/platform=bionic-amd64,conf=std,build=std'
957 - copyartifact:
958 <<: *lttng-tools_steps_copyartifact_defaults
959 project: 'lttng-ust_{ustversion}_build/liburcu_version={urcuversion},platform=bionic-amd64,conf=std,build=std'
960 - shell:
961 !include-raw-escape: scripts/common/scan-build.sh
962
963 publishers:
964 - html-publisher:
965 name: 'HTML Report'
966 dir: 'scan-build-archive/'
967 files: 'index.html'
968 - ircbot: *lttng-tools_publisher_ircbot_defaults
969
970 - job-template:
971 name: lttng-tools_{version}_coverity
972 defaults: lttng-tools
973 node: 'bionic-amd64'
974
975 triggers:
976 - pollscm:
977 cron: "@daily"
978
979 wrappers:
980 - ansicolor: *lttng-tools_wrapper_ansicolor_defaults
981 - timeout: *lttng-tools_wrapper_timeout_defaults
982 - timestamps
983 - workspace-cleanup
984 - credentials-binding:
985 - username-password-separated:
986 credential-id: lttng-tools_coverity_token
987 username: COVERITY_SCAN_PROJECT_NAME
988 password: COVERITY_SCAN_TOKEN
989
990 builders:
991 - copyartifact:
992 <<: *lttng-tools_steps_copyartifact_defaults
993 project: 'liburcu_{urcuversion}_build/platform=bionic-amd64,conf=std,build=std'
994 - copyartifact:
995 <<: *lttng-tools_steps_copyartifact_defaults
996 project: 'lttng-ust_{ustversion}_build/liburcu_version={urcuversion},platform=bionic-amd64,conf=std,build=std'
997 - shell:
998 !include-raw-escape: scripts/common/coverity.sh
999
1000 publishers:
1001 - archive:
1002 artifacts: 'analysis-results.tgz,cov-int/**'
1003 allow-empty: false
1004 - workspace-cleanup: *lttng-tools_publisher_workspace-cleanup_defaults
1005 - ircbot: *lttng-tools_publisher_ircbot_defaults
1006
1007
1008 ## Views
1009 - view-template:
1010 name: 'LTTng-tools'
1011 view-type: list
1012 regex: 'lttng-tools[-_].*'
1013
1014
1015 ## Projects
1016 - project:
1017 name: lttng-tools
1018 job_prefix: ''
1019 ust_job_prefix: ''
1020 urcu_job_prefix: ''
1021 bt_job_prefix: ''
1022 github_user: lttng
1023 email_to: 'ci-notification@lists.lttng.org, cc:jgalar@efficios.com'
1024 version:
1025 - stable-2.12
1026 - stable-2.13
1027 - master
1028 jobs:
1029 # Master #
1030 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1031 buildtype: linuxbuild
1032 version: master
1033 ustversion: master
1034 platforms: !!python/tuple [jammy-amd64]
1035 builds: !!python/tuple [std, oot, dist]
1036 confs: !!python/tuple [std, no-ust, agents, debug-rcu, tls_fallback]
1037 urcuversions: !!python/tuple [master]
1038 babelversions: !!python/tuple [stable-2.0, master]
1039 filter: '(build=="std") || ((babeltrace_version=="master" && (conf=="std" || conf=="agents" || conf=="no-ust")))'
1040 touchstone: ''
1041 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1042 buildtype: build
1043 version: master
1044 ustversion: master
1045 platforms: !!python/tuple [bionic-amd64]
1046 builds: !!python/tuple [std, oot, dist]
1047 confs: !!python/tuple [std, no-ust, agents, debug-rcu, tls_fallback]
1048 urcuversions: !!python/tuple [master]
1049 babelversions: !!python/tuple [stable-2.0, master]
1050 filter: '(build=="std") || ((babeltrace_version=="master" && (conf=="std" || conf=="agents" || conf=="no-ust")))'
1051 touchstone: ''
1052 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1053 buildtype: portbuild
1054 version: master
1055 ustversion: master
1056 platforms: !!python/tuple [deb12-armhf, deb12-arm64, deb12-ppc64el, deb12-i386]
1057 builds: !!python/tuple [std]
1058 confs: !!python/tuple [std, no-ust, agents]
1059 urcuversions: !!python/tuple [master]
1060 babelversions: !!python/tuple [stable-2.0]
1061 filter: ''
1062 touchstone: ''
1063 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1064 buildtype: slesbuild
1065 version: master
1066 ustversion: master
1067 platforms: !!python/tuple [sles12sp5-amd64, sles15sp4-amd64]
1068 builds: !!python/tuple [std]
1069 confs: !!python/tuple [agents]
1070 urcuversions: !!python/tuple [master]
1071 babelversions: !!python/tuple [stable-2.0]
1072 filter: ''
1073 touchstone: ''
1074 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1075 buildtype: elbuild
1076 version: master
1077 ustversion: master
1078 platforms: !!python/tuple [el7-amd64, el8-amd64, el9-amd64, el7-arm64, el8-arm64, el9-arm64]
1079 builds: !!python/tuple [std]
1080 confs: !!python/tuple [std]
1081 urcuversions: !!python/tuple [master]
1082 babelversions: !!python/tuple [stable-2.0]
1083 filter: ''
1084 touchstone: ''
1085 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1086 buildtype: yoctobuild
1087 version: master
1088 ustversion: master
1089 platforms: !!python/tuple [yocto23-powerpcspe, yocto23-powerpc, yocto31-ppc64]
1090 builds: !!python/tuple [std]
1091 confs: !!python/tuple [std]
1092 urcuversions: !!python/tuple [master]
1093 babelversions: !!python/tuple [stable-2.0]
1094 filter: ''
1095 touchstone: ''
1096 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1097 buildtype: macosbuild
1098 version: master
1099 ustversion: master
1100 platforms: !!python/tuple [macos-amd64, macos-arm64]
1101 builds: !!python/tuple [std]
1102 confs: !!python/tuple [relayd-only]
1103 urcuversions: !!python/tuple [master]
1104 babelversions: !!python/tuple [stable-2.0]
1105 filter: ''
1106 touchstone: ''
1107 - 'lttng-tools_{version}_winbuild':
1108 version: master
1109 ustversion: master
1110 platforms: !!python/tuple [cygwin64]
1111 builds: !!python/tuple [std]
1112 confs: !!python/tuple [relayd-only]
1113 urcuversions: !!python/tuple [master]
1114 babelversions: !!python/tuple [stable-2.0]
1115 filter: ''
1116 touchstone: ''
1117 - '{job_prefix}lttng-tools_{version}_long_regression':
1118 buildtype: build
1119 version: master
1120 ustversion: master
1121 platforms: !!python/tuple [bionic-amd64]
1122 builds: !!python/tuple [std]
1123 confs: !!python/tuple [std]
1124 urcuversions: !!python/tuple [master]
1125 babelversions: !!python/tuple [stable-2.0]
1126 filter: ''
1127 touchstone: ''
1128 - '{job_prefix}lttng-tools_{version}_rootbuild':
1129 buildtype: build
1130 version: master
1131 ustversion: master
1132 platforms: !!python/tuple [bionic-amd64]
1133 builds: !!python/tuple [std]
1134 confs: !!python/tuple [agents]
1135 urcuversions: !!python/tuple [master]
1136 babelversions: !!python/tuple [stable-2.0]
1137 filter: '(node=="amd64-rootnode" && platform=="bionic-amd64")'
1138 touchstone: ''
1139 - '{job_prefix}lttng-tools_{version}_rootbuild_i386':
1140 buildtype: portbuild
1141 version: master
1142 ustversion: master
1143 platforms: !!python/tuple [deb12-i386]
1144 builds: !!python/tuple [std]
1145 confs: !!python/tuple [agents]
1146 urcuversions: !!python/tuple [master]
1147 babelversions: !!python/tuple [stable-2.0]
1148 filter: '(node=="i386-rootnode" && platform=="deb12-i386")'
1149 touchstone: ''
1150 - 'lttng-tools_{version}_scan-build':
1151 version: master
1152 urcuversion: master
1153 ustversion: master
1154 - 'lttng-tools_{version}_coverity':
1155 version: master
1156 urcuversion: master
1157 ustversion: master
1158
1159 # stable-2.13
1160 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1161 buildtype: linuxbuild
1162 version: stable-2.13
1163 ustversion: stable-2.13
1164 platforms: !!python/tuple [jammy-amd64]
1165 builds: !!python/tuple [std, oot, dist]
1166 confs: !!python/tuple [std, no-ust, agents, debug-rcu, tls_fallback]
1167 urcuversions: !!python/tuple [stable-0.13]
1168 babelversions: !!python/tuple [stable-2.0]
1169 filter: '(build=="std") || ((babeltrace_version=="stable-2.0" && (conf=="std" || conf=="agents" || conf=="no-ust")))'
1170 touchstone: ''
1171 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1172 buildtype: build
1173 version: stable-2.13
1174 ustversion: stable-2.13
1175 platforms: !!python/tuple [bionic-amd64]
1176 builds: !!python/tuple [std, oot, dist]
1177 confs: !!python/tuple [std, no-ust, agents, debug-rcu, tls_fallback]
1178 urcuversions: !!python/tuple [stable-0.13]
1179 babelversions: !!python/tuple [stable-2.0]
1180 filter: '(build=="std") || ((babeltrace_version=="stable-2.0" && (conf=="std" || conf=="agents" || conf=="no-ust")))'
1181 touchstone: ''
1182 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1183 buildtype: portbuild
1184 version: stable-2.13
1185 ustversion: stable-2.13
1186 platforms: !!python/tuple [deb12-armhf, deb12-arm64, deb12-ppc64el, deb12-i386]
1187 builds: !!python/tuple [std]
1188 confs: !!python/tuple [std, no-ust, agents]
1189 urcuversions: !!python/tuple [stable-0.13]
1190 babelversions: !!python/tuple [stable-2.0]
1191 filter: ''
1192 touchstone: ''
1193 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1194 buildtype: slesbuild
1195 version: stable-2.13
1196 ustversion: stable-2.13
1197 platforms: !!python/tuple [sles12sp5-amd64, sles15sp4-amd64]
1198 builds: !!python/tuple [std]
1199 confs: !!python/tuple [agents]
1200 urcuversions: !!python/tuple [stable-0.13]
1201 babelversions: !!python/tuple [stable-2.0]
1202 filter: ''
1203 touchstone: ''
1204 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1205 buildtype: elbuild
1206 version: stable-2.13
1207 ustversion: stable-2.13
1208 platforms: !!python/tuple [el7-amd64, el8-amd64, el9-amd64, el7-arm64, el8-arm64, el9-arm64]
1209 builds: !!python/tuple [std]
1210 confs: !!python/tuple [std]
1211 urcuversions: !!python/tuple [stable-0.13]
1212 babelversions: !!python/tuple [stable-2.0]
1213 filter: ''
1214 touchstone: ''
1215 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1216 buildtype: yoctobuild
1217 version: stable-2.13
1218 ustversion: stable-2.13
1219 platforms: !!python/tuple [yocto23-powerpcspe, yocto23-powerpc, yocto31-ppc64]
1220 builds: !!python/tuple [std]
1221 confs: !!python/tuple [std]
1222 urcuversions: !!python/tuple [stable-0.13]
1223 babelversions: !!python/tuple [stable-2.0]
1224 filter: ''
1225 touchstone: ''
1226 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1227 buildtype: macosbuild
1228 version: stable-2.13
1229 ustversion: stable-2.13
1230 platforms: !!python/tuple [macos-amd64, macos-arm64]
1231 builds: !!python/tuple [std]
1232 confs: !!python/tuple [relayd-only]
1233 urcuversions: !!python/tuple [stable-0.13]
1234 babelversions: !!python/tuple [stable-2.0]
1235 filter: ''
1236 touchstone: ''
1237 - 'lttng-tools_{version}_winbuild':
1238 version: stable-2.13
1239 ustversion: stable-2.13
1240 platforms: !!python/tuple [cygwin64]
1241 builds: !!python/tuple [std]
1242 confs: !!python/tuple [relayd-only]
1243 urcuversions: !!python/tuple [stable-0.13]
1244 babelversions: !!python/tuple [stable-2.0]
1245 filter: ''
1246 touchstone: ''
1247 - '{job_prefix}lttng-tools_{version}_long_regression':
1248 buildtype: build
1249 version: stable-2.13
1250 ustversion: stable-2.13
1251 platforms: !!python/tuple [bionic-amd64]
1252 builds: !!python/tuple [std]
1253 confs: !!python/tuple [std]
1254 urcuversions: !!python/tuple [stable-0.13]
1255 babelversions: !!python/tuple [stable-2.0]
1256 filter: ''
1257 touchstone: ''
1258 - '{job_prefix}lttng-tools_{version}_rootbuild':
1259 buildtype: build
1260 version: stable-2.13
1261 ustversion: stable-2.13
1262 platforms: !!python/tuple [bionic-amd64]
1263 builds: !!python/tuple [std]
1264 confs: !!python/tuple [agents]
1265 urcuversions: !!python/tuple [stable-0.13]
1266 babelversions: !!python/tuple [stable-2.0]
1267 filter: '(node=="amd64-rootnode" && platform=="bionic-amd64")'
1268 touchstone: ''
1269 - 'lttng-tools_{version}_release':
1270 version: v2.13
1271 ustversion: stable-2.13
1272 urcuversion: stable-0.13
1273 babelversion: stable-2.0
1274 - 'lttng-tools_{version}_scan-build':
1275 version: stable-2.13
1276 urcuversion: stable-0.13
1277 ustversion: stable-2.13
1278
1279 # stable-2.12
1280 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1281 buildtype: linuxbuild
1282 version: stable-2.12
1283 ustversion: stable-2.12
1284 platforms: !!python/tuple [jammy-amd64]
1285 builds: !!python/tuple [std, oot, dist]
1286 confs: !!python/tuple [std, no-ust, agents, debug-rcu, tls_fallback]
1287 urcuversions: !!python/tuple [stable-0.13]
1288 babelversions: !!python/tuple [stable-2.0]
1289 filter: '(build=="std") || ((babeltrace_version=="stable-2.0" && (conf=="std" || conf=="agents" || conf=="no-ust")))'
1290 touchstone: ''
1291 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1292 buildtype: build
1293 version: stable-2.12
1294 ustversion: stable-2.12
1295 platforms: !!python/tuple [bionic-amd64]
1296 builds: !!python/tuple [std, oot, dist]
1297 confs: !!python/tuple [std, no-ust, agents, debug-rcu, tls_fallback]
1298 urcuversions: !!python/tuple [stable-0.13]
1299 babelversions: !!python/tuple [stable-2.0]
1300 filter: '(build=="std") || ((babeltrace_version=="stable-2.0" && (conf=="std" || conf=="agents" || conf=="no-ust")))'
1301 touchstone: ''
1302 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1303 buildtype: portbuild
1304 version: stable-2.12
1305 ustversion: stable-2.12
1306 platforms: !!python/tuple [deb12-armhf, deb12-arm64, deb12-ppc64el, deb12-i386]
1307 builds: !!python/tuple [std]
1308 confs: !!python/tuple [std, no-ust, agents]
1309 urcuversions: !!python/tuple [stable-0.13]
1310 babelversions: !!python/tuple [stable-2.0]
1311 filter: ''
1312 touchstone: ''
1313 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1314 buildtype: slesbuild
1315 version: stable-2.12
1316 ustversion: stable-2.12
1317 platforms: !!python/tuple [sles12sp5-amd64, sles15sp4-amd64]
1318 builds: !!python/tuple [std]
1319 confs: !!python/tuple [agents]
1320 urcuversions: !!python/tuple [stable-0.13]
1321 babelversions: !!python/tuple [stable-2.0]
1322 filter: ''
1323 touchstone: ''
1324 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1325 buildtype: elbuild
1326 version: stable-2.12
1327 ustversion: stable-2.12
1328 platforms: !!python/tuple [el7-amd64, el8-amd64, el9-amd64, el7-arm64, el8-arm64, el9-arm64]
1329 builds: !!python/tuple [std]
1330 confs: !!python/tuple [std]
1331 urcuversions: !!python/tuple [stable-0.13]
1332 babelversions: !!python/tuple [stable-2.0]
1333 filter: ''
1334 touchstone: ''
1335 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1336 buildtype: yoctobuild
1337 version: stable-2.12
1338 ustversion: stable-2.12
1339 platforms: !!python/tuple [yocto23-powerpcspe, yocto23-powerpc, yocto31-ppc64]
1340 builds: !!python/tuple [std]
1341 confs: !!python/tuple [std]
1342 urcuversions: !!python/tuple [stable-0.13]
1343 babelversions: !!python/tuple [stable-2.0]
1344 filter: ''
1345 touchstone: ''
1346 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1347 buildtype: macosbuild
1348 version: stable-2.12
1349 ustversion: stable-2.12
1350 platforms: !!python/tuple [macos-amd64, macos-arm64]
1351 builds: !!python/tuple [std]
1352 confs: !!python/tuple [relayd-only]
1353 urcuversions: !!python/tuple [stable-0.13]
1354 babelversions: !!python/tuple [stable-2.0]
1355 filter: ''
1356 touchstone: ''
1357 - 'lttng-tools_{version}_winbuild':
1358 version: stable-2.12
1359 ustversion: stable-2.12
1360 platforms: !!python/tuple [cygwin64]
1361 builds: !!python/tuple [std]
1362 confs: !!python/tuple [relayd-only]
1363 urcuversions: !!python/tuple [stable-0.13]
1364 babelversions: !!python/tuple [stable-2.0]
1365 filter: ''
1366 touchstone: ''
1367 - '{job_prefix}lttng-tools_{version}_long_regression':
1368 buildtype: build
1369 version: stable-2.12
1370 ustversion: stable-2.12
1371 platforms: !!python/tuple [bionic-amd64]
1372 builds: !!python/tuple [std]
1373 confs: !!python/tuple [std]
1374 urcuversions: !!python/tuple [stable-0.13]
1375 babelversions: !!python/tuple [stable-2.0]
1376 filter: ''
1377 touchstone: ''
1378 - '{job_prefix}lttng-tools_{version}_rootbuild':
1379 buildtype: build
1380 version: stable-2.12
1381 ustversion: stable-2.12
1382 platforms: !!python/tuple [bionic-amd64]
1383 builds: !!python/tuple [std]
1384 confs: !!python/tuple [agents]
1385 urcuversions: !!python/tuple [stable-0.13]
1386 babelversions: !!python/tuple [stable-2.0]
1387 filter: '(node=="amd64-rootnode" && platform=="bionic-amd64")'
1388 touchstone: ''
1389 - 'lttng-tools_{version}_release':
1390 version: v2.12
1391 ustversion: stable-2.12
1392 urcuversion: stable-0.13
1393 babelversion: stable-2.0
1394 - 'lttng-tools_{version}_scan-build':
1395 version: stable-2.12
1396 urcuversion: stable-0.13
1397 ustversion: stable-2.12
1398
1399 - project:
1400 name: dev_upstream_lttng-tools
1401 job_prefix: 'dev_upstream_'
1402 ust_job_prefix: 'dev_upstream_'
1403 urcu_job_prefix: 'dev_upstream_'
1404 bt_job_prefix: 'dev_upstream_'
1405 github_user: lttng
1406 email_to: 'ci-notification@lists.lttng.org, cc:jgalar@efficios.com'
1407 jobs:
1408 # stable-2.11
1409 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1410 buildtype: linuxbuild
1411 version: stable-2.11
1412 ustversion: stable-2.11
1413 platforms: !!python/tuple [jammy-amd64]
1414 builds: !!python/tuple [std, oot, dist]
1415 confs: !!python/tuple [std, no-ust, agents, debug-rcu, tls_fallback]
1416 urcuversions: !!python/tuple [stable-0.11]
1417 babelversions: !!python/tuple [stable-1.5]
1418 filter: '(build=="std") || (conf=="std" || conf=="agents" || conf=="no-ust")'
1419 touchstone: ''
1420 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1421 buildtype: portbuild
1422 version: stable-2.11
1423 ustversion: stable-2.11
1424 platforms: !!python/tuple [deb12-armhf, deb12-arm64, deb12-ppc64el, deb12-i386]
1425 builds: !!python/tuple [std]
1426 confs: !!python/tuple [no-ust, agents]
1427 urcuversions: !!python/tuple [stable-0.11]
1428 babelversions: !!python/tuple [stable-1.5]
1429 filter: ''
1430 touchstone: ''
1431 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1432 buildtype: slesbuild
1433 version: stable-2.11
1434 ustversion: stable-2.11
1435 platforms: !!python/tuple [sles12sp5-amd64, sles15sp4-amd64]
1436 builds: !!python/tuple [std]
1437 confs: !!python/tuple [agents]
1438 urcuversions: !!python/tuple [stable-0.11]
1439 babelversions: !!python/tuple [stable-1.5]
1440 filter: ''
1441 touchstone: ''
1442 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1443 buildtype: elbuild
1444 version: stable-2.11
1445 ustversion: stable-2.11
1446 platforms: !!python/tuple [el7-amd64, el8-amd64, el9-amd64]
1447 builds: !!python/tuple [std]
1448 confs: !!python/tuple [std]
1449 urcuversions: !!python/tuple [stable-0.11]
1450 babelversions: !!python/tuple [stable-1.5]
1451 filter: ''
1452 touchstone: ''
1453
1454 # stable-2.10
1455 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1456 buildtype: linuxbuild
1457 version: stable-2.10
1458 ustversion: stable-2.10
1459 platforms: !!python/tuple [jammy-amd64]
1460 builds: !!python/tuple [std, oot, dist]
1461 confs: !!python/tuple [std, no-ust, agents, debug-rcu, tls_fallback]
1462 urcuversions: !!python/tuple [stable-0.9]
1463 babelversions: !!python/tuple [stable-1.5]
1464 filter: '(build=="std") || (conf=="std" || conf=="agents" || conf=="no-ust")'
1465 touchstone: ''
1466 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1467 buildtype: portbuild
1468 version: stable-2.10
1469 ustversion: stable-2.10
1470 platforms: !!python/tuple [deb12-armhf, deb12-arm64, deb12-ppc64el, deb12-i386]
1471 builds: !!python/tuple [std]
1472 confs: !!python/tuple [no-ust, agents]
1473 urcuversions: !!python/tuple [stable-0.9]
1474 babelversions: !!python/tuple [stable-1.5]
1475 filter: ''
1476 touchstone: ''
1477 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1478 buildtype: slesbuild
1479 version: stable-2.10
1480 ustversion: stable-2.10
1481 platforms: !!python/tuple [sles12sp5-amd64, sles15sp4-amd64]
1482 builds: !!python/tuple [std]
1483 confs: !!python/tuple [agents]
1484 urcuversions: !!python/tuple [stable-0.9]
1485 babelversions: !!python/tuple [stable-1.5]
1486 filter: ''
1487 touchstone: ''
1488 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1489 buildtype: elbuild
1490 version: stable-2.10
1491 ustversion: stable-2.10
1492 platforms: !!python/tuple [el7-amd64, el8-amd64, el9-amd64]
1493 builds: !!python/tuple [std]
1494 confs: !!python/tuple [std]
1495 urcuversions: !!python/tuple [stable-0.9]
1496 babelversions: !!python/tuple [stable-1.5]
1497 filter: ''
1498 touchstone: ''
1499
1500 - project:
1501 name: dev_jgalar_lttng-tools
1502 job_prefix: 'dev_jgalar_'
1503 ust_job_prefix: ''
1504 urcu_job_prefix: ''
1505 bt_job_prefix: ''
1506 user: jgalar
1507 github_user: jgalar
1508 email_to: 'jgalar@efficios.com'
1509 jobs:
1510 # Master
1511 - 'dev_{user}_lttng-tools_{version}_{buildtype}':
1512 buildtype: build
1513 version: master-staging
1514 ustversion: master
1515 platforms: !!python/tuple [bionic-amd64]
1516 builds: !!python/tuple [std, oot, dist]
1517 confs: !!python/tuple [std, no-ust, agents]
1518 urcuversions: !!python/tuple [master]
1519 babelversions: !!python/tuple [stable-2.0, master]
1520 filter: ''
1521 touchstone: ''
1522 - 'dev_{user}_lttng-tools_{version}_{buildtype}':
1523 buildtype: portbuild
1524 version: master-staging
1525 ustversion: master
1526 platforms: !!python/tuple [deb12-armhf, deb12-arm64, deb12-ppc64el, deb12-i386]
1527 builds: !!python/tuple [std]
1528 confs: !!python/tuple [std, no-ust, agents]
1529 urcuversions: !!python/tuple [master]
1530 babelversions: !!python/tuple [stable-1.5, master]
1531 filter: ''
1532 touchstone: ''
1533 - 'dev_{user}_lttng-tools_{version}_{buildtype}':
1534 buildtype: macosbuild
1535 version: master-staging
1536 ustversion: master
1537 platforms: !!python/tuple [macos-amd64, macos-arm64]
1538 builds: !!python/tuple [std]
1539 confs: !!python/tuple [relayd-only]
1540 urcuversions: !!python/tuple [master]
1541 babelversions: !!python/tuple [stable-2.0]
1542 filter: ''
1543 touchstone: ''
1544
1545 # stable-2.13
1546 - 'dev_{user}_lttng-tools_{version}_{buildtype}':
1547 buildtype: build
1548 version: stable-2.13-staging
1549 ustversion: stable-2.13
1550 platforms: !!python/tuple [bionic-amd64]
1551 builds: !!python/tuple [std, oot, dist]
1552 confs: !!python/tuple [std, no-ust, agents]
1553 urcuversions: !!python/tuple [stable-0.13]
1554 babelversions: !!python/tuple [stable-2.0, master]
1555 filter: ''
1556 touchstone: ''
1557 - 'dev_{user}_lttng-tools_{version}_{buildtype}':
1558 buildtype: portbuild
1559 version: stable-2.13-staging
1560 ustversion: stable-2.13
1561 platforms: !!python/tuple [deb12-armhf, deb12-arm64, deb12-ppc64el, deb12-i386]
1562 builds: !!python/tuple [std]
1563 confs: !!python/tuple [std, no-ust, agents]
1564 urcuversions: !!python/tuple [stable-0.13]
1565 babelversions: !!python/tuple [stable-2.0]
1566 filter: ''
1567 touchstone: ''
1568
1569 # stable-2.12
1570 - 'dev_{user}_lttng-tools_{version}_{buildtype}':
1571 buildtype: build
1572 version: stable-2.12-staging
1573 ustversion: stable-2.12
1574 platforms: !!python/tuple [bionic-amd64]
1575 builds: !!python/tuple [std, oot, dist]
1576 confs: !!python/tuple [std, no-ust, agents]
1577 urcuversions: !!python/tuple [stable-0.13]
1578 babelversions: !!python/tuple [stable-2.0, master]
1579 filter: ''
1580 touchstone: ''
1581 - 'dev_{user}_lttng-tools_{version}_{buildtype}':
1582 buildtype: portbuild
1583 version: stable-2.12-staging
1584 ustversion: stable-2.12
1585 platforms: !!python/tuple [deb12-armhf, deb12-arm64, deb12-ppc64el, deb12-i386]
1586 builds: !!python/tuple [std]
1587 confs: !!python/tuple [std, no-ust, agents]
1588 urcuversions: !!python/tuple [stable-0.13]
1589 babelversions: !!python/tuple [stable-2.0]
1590 filter: ''
1591 touchstone: ''
1592
1593 - project:
1594 name: dev_jgalar_lttng-tools-upstream
1595 job_prefix: 'dev_jgalar_'
1596 ust_job_prefix: 'dev_upstream_'
1597 urcu_job_prefix: 'dev_upstream_'
1598 bt_job_prefix: 'dev_upstream_'
1599 user: jgalar
1600 github_user: jgalar
1601 email_to: 'jgalar@efficios.com'
1602 jobs:
1603 # stable-2.11
1604 - 'dev_{user}_lttng-tools_{version}_{buildtype}':
1605 buildtype: build
1606 version: stable-2.11-staging
1607 ustversion: stable-2.11
1608 platforms: !!python/tuple [bionic-amd64]
1609 builds: !!python/tuple [std, oot, dist]
1610 confs: !!python/tuple [std, no-ust, agents]
1611 urcuversions: !!python/tuple [stable-0.11]
1612 babelversions: !!python/tuple [stable-1.5]
1613 filter: ''
1614 touchstone: ''
1615 - 'dev_{user}_lttng-tools_{version}_{buildtype}':
1616 buildtype: portbuild
1617 version: stable-2.11-staging
1618 ustversion: stable-2.11
1619 platforms: !!python/tuple [deb12-armhf, deb12-arm64, deb12-ppc64el, deb12-i386]
1620 builds: !!python/tuple [std]
1621 confs: !!python/tuple [std, no-ust, agents]
1622 urcuversions: !!python/tuple [stable-0.11]
1623 babelversions: !!python/tuple [stable-1.5]
1624 filter: ''
1625 touchstone: ''
1626
1627 # stable-2.10
1628 - 'dev_{user}_lttng-tools_{version}_{buildtype}':
1629 buildtype: build
1630 version: stable-2.10-staging
1631 ustversion: stable-2.10
1632 platforms: !!python/tuple [bionic-amd64]
1633 builds: !!python/tuple [std, oot, dist]
1634 confs: !!python/tuple [std, no-ust, agents]
1635 urcuversions: !!python/tuple [stable-0.9]
1636 babelversions: !!python/tuple [stable-1.5]
1637 filter: ''
1638 touchstone: ''
1639 - 'dev_{user}_lttng-tools_{version}_{buildtype}':
1640 buildtype: portbuild
1641 version: stable-2.10-staging
1642 ustversion: stable-2.10
1643 platforms: !!python/tuple [deb12-armhf, deb12-arm64, deb12-ppc64el, deb12-i386]
1644 builds: !!python/tuple [std]
1645 confs: !!python/tuple [std, no-ust, agents]
1646 urcuversions: !!python/tuple [stable-0.9]
1647 babelversions: !!python/tuple [stable-1.5]
1648 filter: ''
1649 touchstone: ''
1650
1651 - project:
1652 name: review-lttng-tools
1653 job_prefix: ''
1654 ust_job_prefix: ''
1655 urcu_job_prefix: ''
1656 bt_job_prefix: ''
1657 github_user: lttng
1658 jobs:
1659 ## Master ##
1660 - 'dev_review_lttng-tools_{version}_{buildtype}':
1661 version: master
1662 buildtype: build
1663 platforms: !!python/tuple [bionic-amd64]
1664 builds: !!python/tuple [std, oot, dist, oot-dist]
1665 confs: !!python/tuple [std, no-ust, agents]
1666 urcuversions: !!python/tuple [stable-0.14] # Baseline is stable-0.14 for C++ support
1667 babelversions: !!python/tuple [stable-2.0]
1668 filter: ''
1669 touchstone: ''
1670 - 'dev_review_lttng-tools_{version}_rootbuild':
1671 version: master
1672 buildtype: build
1673 platforms: !!python/tuple [bionic-amd64]
1674 builds: !!python/tuple [std]
1675 confs: !!python/tuple [agents]
1676 urcuversions: !!python/tuple [stable-0.14] # Baseline is stable-0.14 for C++ support
1677 babelversions: !!python/tuple [stable-2.0]
1678 filter: '(node=="amd64-rootnode" && platform=="bionic-amd64")'
1679 touchstone: ''
1680 - 'dev_review_lttng-tools_{version}_smokebuild':
1681 version: master
1682 buildtype: linuxbuild
1683 platforms: !!python/tuple [jammy-amd64]
1684 builds: !!python/tuple [oot-dist]
1685 confs: !!python/tuple [agents]
1686 urcuversions: !!python/tuple [stable-0.14] # Baseline is stable-0.14 for C++ support
1687 babelversions: !!python/tuple [stable-2.0]
1688 filter: ''
1689 touchstone: ''
1690 - 'dev_review_lttng-tools_{version}_clang-tidy':
1691 version: master
1692 buildtype: linuxbuild
1693 platforms: !!python/tuple [jammy-amd64]
1694 builds: !!python/tuple [std]
1695 confs: !!python/tuple [agents]
1696 urcuversions: !!python/tuple [stable-0.14] # Baseline is stable-0.14 for C++ support
1697 babelversions: !!python/tuple [stable-2.0]
1698 filter: ''
1699 touchstone: ''
1700 - 'dev_review_lttng-tools_{version}_check-format':
1701 version: master
1702
1703 ## Stable 2.13 ##
1704 - 'dev_review_lttng-tools_{version}_{buildtype}':
1705 version: stable-2.13
1706 buildtype: build
1707 platforms: !!python/tuple [bionic-amd64]
1708 builds: !!python/tuple [std, oot, dist, oot-dist]
1709 confs: !!python/tuple [std, no-ust, agents]
1710 urcuversions: !!python/tuple [stable-0.13]
1711 babelversions: !!python/tuple [stable-2.0]
1712 filter: ''
1713 touchstone: ''
1714 - 'dev_review_lttng-tools_{version}_rootbuild':
1715 version: stable-2.13
1716 buildtype: build
1717 platforms: !!python/tuple [bionic-amd64]
1718 builds: !!python/tuple [std]
1719 confs: !!python/tuple [agents]
1720 urcuversions: !!python/tuple [stable-0.13]
1721 babelversions: !!python/tuple [stable-2.0]
1722 filter: '(node=="amd64-rootnode" && platform=="bionic-amd64")'
1723 touchstone: ''
1724
1725 ## Stable 2.12 ##
1726 - 'dev_review_lttng-tools_{version}_{buildtype}':
1727 version: stable-2.12
1728 buildtype: build
1729 platforms: !!python/tuple [bionic-amd64]
1730 builds: !!python/tuple [std, oot, dist, oot-dist]
1731 confs: !!python/tuple [std, no-ust, agents]
1732 urcuversions: !!python/tuple [stable-0.13]
1733 babelversions: !!python/tuple [stable-2.0]
1734 filter: ''
1735 touchstone: ''
1736 - 'dev_review_lttng-tools_{version}_rootbuild':
1737 version: stable-2.12
1738 buildtype: build
1739 platforms: !!python/tuple [bionic-amd64]
1740 builds: !!python/tuple [std]
1741 confs: !!python/tuple [agents]
1742 urcuversions: !!python/tuple [stable-0.13]
1743 babelversions: !!python/tuple [stable-2.0]
1744 filter: '(node=="amd64-rootnode" && platform=="bionic-amd64")'
1745 touchstone: ''
1746
1747 - project:
1748 name: lttng-tools-mjeanson
1749 job_prefix: 'dev_mjeanson_'
1750 ust_job_prefix: 'dev_mjeanson_'
1751 urcu_job_prefix: 'dev_mjeanson_'
1752 bt_job_prefix: 'dev_mjeanson_'
1753 github_user: lttng
1754 github_name: lttng-tools
1755 email_to: "mjeanson@efficios.com"
1756 version:
1757 - master
1758 jobs:
1759 - '{job_prefix}lttng-tools_{version}_{buildtype}':
1760 buildtype: portbuild
1761 version: master
1762 ustversion: master
1763 platforms: !!python/tuple [sid-riscv64]
1764 builds: !!python/tuple [std]
1765 confs: !!python/tuple [std, no-ust, agents]
1766 urcuversions: !!python/tuple [master]
1767 babelversions: !!python/tuple [master]
1768 filter: ''
1769 touchstone: ''
1770
1771 - project:
1772 name: lttng-tools-views
1773 views:
1774 - LTTng-tools
This page took 0.073279 seconds and 5 git commands to generate.