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