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