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