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