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