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