jjb: update yocto powerpc and ppc64 to kirkstone
[lttng-ci.git] / jobs / lttng-ust.yaml
1 ---
2 ## Defaults
3 - defaults:
4 name: lttng-ust
5 description: |
6 LTTng-UST, the Linux Trace Toolkit Next Generation Userspace Tracer, is a
7 port of the low-overhead tracing capabilities of the LTTng kernel tracer
8 to user-space. The library "liblttng-ust" enables tracing of
9 applications and libraries.
10
11 <p>Job is managed by Jenkins Job Builder.</p>
12
13 project-type: freestyle
14
15 wrappers:
16 - ansicolor: &lttng-ust_wrapper_ansicolor_defaults
17 colormap: xterm
18 - timeout: &lttng-ust_wrapper_timeout_defaults
19 timeout: 20
20 fail: 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
26 scm:
27 - git:
28 url: https://github.com/{github_user}/{github_name}.git
29 browser: githubweb
30 browser-url: https://github.com/{github_user}/{github_name}
31 branches:
32 - origin/{version}
33 basedir: src/lttng-ust
34 skip-tag: true
35
36 triggers:
37 - pollscm:
38 cron: "@hourly"
39
40 properties:
41 - inject:
42 properties-content: |
43 PROJECT_NAME=lttng-ust
44 - build-discarder:
45 num-to-keep: 10
46 artifact-num-to-keep: 2
47 - github:
48 url: https://github.com/{github_user}/{github_name}
49
50
51 ## Anchors
52 - _lttng-ust_matrix_axes_defaults: &lttng-ust_matrix_axes_defaults
53 name: 'lttng-ust_matrix_axes_defaults'
54 project-type: matrix
55 node: 'master' # Applies only to matrix flyweight task
56 execution-strategy: &lttng-ust_matrix_execution-strategy_defaults
57 combination-filter: '{filter}'
58 touchstone:
59 expr: '{touchstone}'
60 result: unstable
61 axes:
62 - axis: &lttng-ust_matrix_axis_platform
63 type: slave
64 name: platform
65 values: '{obj:platforms}'
66 - axis: &lttng-ust_matrix_axis_conf
67 type: user-defined
68 name: conf
69 values: '{obj:confs}'
70 - axis: &lttng-ust_matrix_axis_build
71 type: user-defined
72 name: build
73 values: '{obj:builds}'
74 - axis: &lttng-ust_matrix_axis_liburcu_version
75 type: user-defined
76 name: liburcu_version
77 values: '{obj:liburcu_versions}'
78
79 - _lttng-ust_matrix_axes_review_lttng-tools: &lttng-ust_matrix_axes_review_lttng-tools
80 name: 'lttng-ust_matrix_axes_review_lttng-tools'
81 project-type: matrix
82 node: 'master' # Applies only to matrix flyweight task
83 execution-strategy: *lttng-ust_matrix_execution-strategy_defaults
84 axes:
85 - axis: *lttng-ust_matrix_axis_platform
86 - axis: *lttng-ust_matrix_axis_conf
87 - axis: *lttng-ust_matrix_axis_build
88
89 - _lttng-ust_steps_copyartifact_defaults:
90 name: 'lttng-ust_steps_copyartifact_defaults'
91 steps:
92 - copyartifact: &lttng-ust_steps_copyartifact_defaults
93 project: ''
94 which-build: last-successful
95 stable: false
96 filter: 'build/**'
97 target: 'deps'
98 do-not-fingerprint: true
99
100 - _lttng-ust_builders_defaults: &lttng-ust_builders_defaults
101 name: 'lttng-ust_builders_defaults'
102 builders:
103 # Generate a properties file to add additionnal env
104 - shell: |
105 #!/bin/bash
106 set -exu
107 # Select the liburcu conf based on the current conf
108 case "$conf" in
109 debug-rcu|tls_fallback)
110 liburcu_conf=$conf
111 ;;
112 *)
113 liburcu_conf=std
114 ;;
115 esac
116 echo "liburcu_conf=$liburcu_conf" > env.properties
117
118 # Inject the additionnal env early to use them in the copyartifact step
119 - inject:
120 properties-file: env.properties
121
122 - copyartifact:
123 <<: *lttng-ust_steps_copyartifact_defaults
124 project: '{job_prefix}liburcu_${{liburcu_version}}_{buildtype}/platform=${{platform}},conf=${{liburcu_conf}},build=std'
125
126 # Run the build
127 - shell:
128 !include-raw-escape:
129 - scripts/common/print.sh
130 - scripts/lttng-ust/build.sh
131
132 - _lttng-ust_builders_review_lttng-tools: &lttng-ust_builders_review_lttng-tools
133 name: 'lttng-ust_builders_review_lttng-tools'
134
135 builders:
136 # Generate a properties file to add additionnal env
137 - shell: |
138 #!/bin/bash
139 set -exu
140 # Select the liburcu conf based on the current conf
141 case "$conf" in
142 debug-rcu|tls_fallback)
143 liburcu_conf=$conf
144 ;;
145 *)
146 liburcu_conf=std
147 ;;
148 esac
149 echo "liburcu_conf=$liburcu_conf" >> env.properties
150 # Select the liburcu version based on the gerrit branch
151 case "$GERRIT_BRANCH" in
152 master)
153 liburcu_version=master
154 ;;
155 *)
156 liburcu_version={liburcu_version}
157 ;;
158 esac
159 echo "liburcu_version=$liburcu_version" >> env.properties
160
161 # Inject the additionnal env early to use them in the copyartifact step
162 - inject:
163 properties-file: env.properties
164
165 - copyartifact:
166 <<: *lttng-ust_steps_copyartifact_defaults
167 project: 'liburcu_${{liburcu_version}}_{buildtype}/platform=${{platform}},conf=${{liburcu_conf}},build=std'
168
169 - copyartifact:
170 <<: *lttng-ust_steps_copyartifact_defaults
171 project: 'babeltrace_{babeltrace_version}_{buildtype}/platform=${{platform}},conf=std,build=std'
172
173 - shell: |
174 #!/bin/bash
175 set -exu
176 git clone -b "$GERRIT_BRANCH" https://review.lttng.org/lttng-tools src/lttng-tools
177
178 - shell:
179 !include-raw-escape:
180 - scripts/common/print.sh
181 - scripts/lttng-ust/build.sh
182
183 - shell:
184 !include-raw-escape:
185 - scripts/lttng-tools/gerrit-install-deps.sh
186
187 - shell:
188 !include-raw-escape:
189 - scripts/common/print.sh
190 - scripts/lttng-tools/build.sh
191
192 - _lttng-ust_publishers_defaults: &lttng-ust_publishers_defaults
193 name: 'lttng-ust_publishers_defaults'
194 publishers:
195 - tap: &lttng-ust_publisher_tap_defaults
196 results: 'tap/**/*.log'
197 fail-if-no-results: true
198 failed-tests-mark-build-as-failure: true
199 include-comment-diagnostics: true
200 output-tap-to-console: false
201 todo-is-failure: false
202 - raw: &lttng-ust_publisher_warnings-ng_defaults
203 xml: |
204 <io.jenkins.plugins.analysis.core.steps.IssuesRecorder plugin="warnings-ng">
205 <analysisTools>
206 <io.jenkins.plugins.analysis.warnings.Gcc4>
207 <id/>
208 <name/>
209 <jenkins plugin="plugin-util-api"/>
210 <pattern/>
211 <reportEncoding/>
212 <skipSymbolicLinks>false</skipSymbolicLinks>
213 </io.jenkins.plugins.analysis.warnings.Gcc4>
214 </analysisTools>
215 <sourceCodeEncoding/>
216 <sourceDirectory/>
217 <sourceDirectories/>
218 <ignoreQualityGate>false</ignoreQualityGate>
219 <ignoreFailedBuilds>true</ignoreFailedBuilds>
220 <failOnError>false</failOnError>
221 <healthy>0</healthy>
222 <unhealthy>0</unhealthy>
223 <minimumSeverity plugin="analysis-model-api">
224 <name>LOW</name>
225 </minimumSeverity>
226 <filters/>
227 <isEnabledForFailure>true</isEnabledForFailure>
228 <isAggregatingResults>true</isAggregatingResults>
229 <isBlameDisabled>false</isBlameDisabled>
230 <skipPublishingChecks>true</skipPublishingChecks>
231 <publishAllIssues>false</publishAllIssues>
232 <qualityGates>
233 <io.jenkins.plugins.analysis.core.util.QualityGate>
234 <threshold>1</threshold>
235 <type>TOTAL</type>
236 <status>WARNING</status>
237 </io.jenkins.plugins.analysis.core.util.QualityGate>
238 </qualityGates>
239 <trendChartType>AGGREGATION_TOOLS</trendChartType>
240 <scm/>
241 </io.jenkins.plugins.analysis.core.steps.IssuesRecorder>
242 - archive: &lttng-ust_publisher_archive_defaults
243 artifacts: 'build/**,tap/**,log/**'
244 follow-symlinks: true
245 allow-empty: false
246 - workspace-cleanup: &lttng-ust_publisher_workspace-cleanup_defaults
247 clean-if:
248 - failure: false
249 - ircbot: &lttng-ust_publisher_ircbot_defaults
250 strategy: statechange-only
251 message-type: summary
252 matrix-notifier: only-parent
253 - email-ext: &lttng-ust_publisher_email-ext_defaults
254 recipients: '{obj:email_to}'
255 reply-to: ci-notification@lists.lttng.org
256 always: false
257 unstable: false
258 first-failure: true
259 first-unstable: true
260 not-built: false
261 aborted: false
262 regression: false
263 failure: false
264 second-failure: false
265 improvement: false
266 still-failing: false
267 success: false
268 fixed: false
269 fixed-unhealthy: true
270 still-unstable: false
271 pre-build: false
272 matrix-trigger: only-parent
273 send-to:
274 - recipients
275
276 - _lttng-ust_publishers_review: &lttng-ust_publishers_review
277 name: 'lttng-ust_publishers_review'
278 publishers:
279 - tap: *lttng-ust_publisher_tap_defaults
280 # Fail job on any compiler warnings
281 - raw:
282 xml: |
283 <io.jenkins.plugins.analysis.core.steps.IssuesRecorder plugin="warnings-ng">
284 <analysisTools>
285 <io.jenkins.plugins.analysis.warnings.Gcc4>
286 <id/>
287 <name/>
288 <jenkins plugin="plugin-util-api"/>
289 <pattern/>
290 <reportEncoding/>
291 <skipSymbolicLinks>false</skipSymbolicLinks>
292 </io.jenkins.plugins.analysis.warnings.Gcc4>
293 </analysisTools>
294 <sourceCodeEncoding/>
295 <sourceDirectory/>
296 <sourceDirectories/>
297 <ignoreQualityGate>false</ignoreQualityGate>
298 <ignoreFailedBuilds>true</ignoreFailedBuilds>
299 <failOnError>false</failOnError>
300 <healthy>0</healthy>
301 <unhealthy>0</unhealthy>
302 <minimumSeverity plugin="analysis-model-api">
303 <name>LOW</name>
304 </minimumSeverity>
305 <filters/>
306 <isEnabledForFailure>true</isEnabledForFailure>
307 <isAggregatingResults>true</isAggregatingResults>
308 <isBlameDisabled>false</isBlameDisabled>
309 <skipPublishingChecks>true</skipPublishingChecks>
310 <publishAllIssues>false</publishAllIssues>
311 <qualityGates>
312 <io.jenkins.plugins.analysis.core.util.QualityGate>
313 <threshold>1</threshold>
314 <type>TOTAL</type>
315 <status>FAILED</status>
316 </io.jenkins.plugins.analysis.core.util.QualityGate>
317 </qualityGates>
318 <trendChartType>AGGREGATION_TOOLS</trendChartType>
319 <scm/>
320 </io.jenkins.plugins.analysis.core.steps.IssuesRecorder>
321 - archive: *lttng-ust_publisher_archive_defaults
322 - workspace-cleanup: *lttng-ust_publisher_workspace-cleanup_defaults
323
324
325 ## Templates
326 - job-template:
327 name: '{job_prefix}lttng-ust_{version}_{buildtype}'
328 defaults: lttng-ust
329
330 <<: *lttng-ust_matrix_axes_defaults
331 <<: *lttng-ust_builders_defaults
332 <<: *lttng-ust_publishers_defaults
333
334
335 - job-template:
336 name: dev_review_lttng-ust_{version}_{buildtype}
337 defaults: lttng-ust
338 concurrent: true
339
340 scm:
341 - git:
342 url: https://review.lttng.org/lttng-ust
343 refspec: 'refs/changes/*:refs/changes/*'
344 branches:
345 - '$GERRIT_REFSPEC'
346 basedir: src/lttng-ust
347 skip-tag: true
348
349 triggers:
350 - gerrit: &lttng-ust_trigger_gerrit_defaults
351 trigger-on:
352 - comment-added-event:
353 approval-category: 'CI-Build'
354 approval-value: 1
355 projects:
356 - project-compare-type: 'PLAIN'
357 project-pattern: 'lttng-ust'
358 branches:
359 - branch-compare-type: 'PLAIN'
360 branch-pattern: '{version}'
361
362 <<: *lttng-ust_matrix_axes_defaults
363 <<: *lttng-ust_builders_defaults
364 <<: *lttng-ust_publishers_review
365
366 properties:
367 - inject:
368 properties-content: |
369 PROJECT_NAME=lttng-ust
370 - build-discarder:
371 days-to-keep: 1
372 - throttle:
373 option: 'category'
374 categories:
375 - 'gerrit-{buildtype}'
376
377
378 - job-template:
379 name: dev_review_lttng-ust_lttng-tools_{version}_{buildtype}
380 defaults: lttng-ust
381 concurrent: true
382
383 scm:
384 - git:
385 url: https://review.lttng.org/lttng-ust
386 refspec: 'refs/changes/*:refs/changes/*'
387 branches:
388 - '$GERRIT_REFSPEC'
389 basedir: src/lttng-ust
390 skip-tag: true
391
392 triggers:
393 - gerrit: *lttng-ust_trigger_gerrit_defaults
394
395 <<: *lttng-ust_matrix_axes_review_lttng-tools
396 <<: *lttng-ust_builders_review_lttng-tools
397 <<: *lttng-ust_publishers_review
398
399 properties:
400 - inject:
401 properties-content: |
402 PROJECT_NAME=lttng-ust
403 - build-discarder:
404 days-to-keep: 1
405 - throttle:
406 option: 'category'
407 categories:
408 - 'gerrit-{buildtype}'
409
410
411 - job-template:
412 name: lttng-ust_{version}_scan-build
413 defaults: lttng-ust
414 node: 'deb12-amd64'
415
416 triggers:
417 - pollscm:
418 cron: "@daily"
419
420 builders:
421 - copyartifact:
422 <<: *lttng-ust_steps_copyartifact_defaults
423 project: liburcu_master_linuxbuild/platform=deb12-amd64,conf=std,build=std
424 - shell:
425 !include-raw-escape: scripts/common/scan-build.sh
426
427 publishers:
428 - html-publisher:
429 name: 'HTML Report'
430 dir: 'scan-build-archive/'
431 files: 'index.html'
432 - workspace-cleanup: *lttng-ust_publisher_workspace-cleanup_defaults
433 - ircbot: *lttng-ust_publisher_ircbot_defaults
434
435
436 - job-template:
437 name: lttng-ust_{version}_coverity
438 defaults: lttng-ust
439 node: 'deb12-amd64'
440
441 triggers:
442 - pollscm:
443 cron: "@daily"
444
445 wrappers:
446 - ansicolor: *lttng-ust_wrapper_ansicolor_defaults
447 - timeout: *lttng-ust_wrapper_timeout_defaults
448 - timestamps
449 - workspace-cleanup
450 - credentials-binding:
451 - username-password-separated:
452 credential-id: lttng-ust_coverity_token
453 username: COVERITY_SCAN_PROJECT_NAME
454 password: COVERITY_SCAN_TOKEN
455
456 builders:
457 - copyartifact:
458 <<: *lttng-ust_steps_copyartifact_defaults
459 project: liburcu_master_linuxbuild/platform=deb12-amd64,conf=std,build=std
460 - shell:
461 !include-raw-escape: scripts/common/coverity.sh
462
463 publishers:
464 - archive:
465 artifacts: 'analysis-results.tgz,cov-int/**'
466 allow-empty: false
467 - workspace-cleanup: *lttng-ust_publisher_workspace-cleanup_defaults
468 - ircbot: *lttng-ust_publisher_ircbot_defaults
469
470
471 ## Views
472 - view-template:
473 name: 'LTTng-ust'
474 view-type: list
475 regex: 'lttng-ust[-_].*'
476
477
478 ## Projects
479 - project:
480 name: lttng-ust
481 job_prefix: ''
482 github_user: lttng
483 github_name: lttng-ust
484 email_to: 'ci-notification@lists.lttng.org, cc:mathieu.desnoyers@efficios.com'
485 jobs:
486 ## Master ##
487 - '{job_prefix}lttng-ust_{version}_{buildtype}':
488 buildtype: linuxbuild
489 version: master
490 platforms: !!python/tuple [deb12-amd64]
491 builds: !!python/tuple [std, dist, oot, oot-dist]
492 confs: !!python/tuple [std, agents, debug-rcu, tls_fallback]
493 liburcu_versions: !!python/tuple [stable-0.13, stable-0.14, master]
494 filter: '(build=="std") || ((liburcu_version=="master" && (conf=="std" || conf=="agents")))'
495 touchstone: ''
496 - '{job_prefix}lttng-ust_{version}_{buildtype}':
497 buildtype: portbuild
498 version: master
499 platforms: !!python/tuple [deb12-armhf, deb12-arm64, deb12-ppc64el, deb12-i386]
500 builds: !!python/tuple [std]
501 confs: !!python/tuple [std, agents]
502 liburcu_versions: !!python/tuple [stable-0.13, master]
503 filter: ''
504 touchstone: ''
505 - '{job_prefix}lttng-ust_{version}_{buildtype}':
506 buildtype: slesbuild
507 version: master
508 platforms: !!python/tuple [sles12sp5-amd64, sles15sp4-amd64]
509 builds: !!python/tuple [std]
510 confs: !!python/tuple [agents]
511 liburcu_versions: !!python/tuple [stable-0.13, master]
512 filter: ''
513 touchstone: ''
514 - '{job_prefix}lttng-ust_{version}_{buildtype}':
515 buildtype: elbuild
516 version: master
517 platforms: !!python/tuple [el7-amd64, el8-amd64, el9-amd64, el7-arm64, el8-arm64, el9-arm64]
518 builds: !!python/tuple [std]
519 confs: !!python/tuple [std]
520 liburcu_versions: !!python/tuple [stable-0.13, master]
521 filter: ''
522 touchstone: ''
523 - '{job_prefix}lttng-ust_{version}_{buildtype}':
524 buildtype: yoctobuild
525 version: master
526 platforms: !!python/tuple [yocto23-powerpcspe, yocto40-powerpc, yocto40-ppc64]
527 builds: !!python/tuple [std]
528 confs: !!python/tuple [std]
529 liburcu_versions: !!python/tuple [stable-0.13, master]
530 filter: ''
531 touchstone: ''
532 - '{job_prefix}lttng-ust_{version}_{buildtype}':
533 buildtype: freebsdbuild
534 version: master
535 platforms: !!python/tuple [freebsd-amd64]
536 builds: !!python/tuple [std]
537 confs: !!python/tuple [agents]
538 liburcu_versions: !!python/tuple [stable-0.13, master]
539 filter: ''
540 touchstone: ''
541 - 'lttng-ust_{version}_scan-build':
542 version: master
543 - 'lttng-ust_{version}_coverity':
544 version: master
545
546 ## Stable 2.13 ##
547 - '{job_prefix}lttng-ust_{version}_{buildtype}':
548 buildtype: linuxbuild
549 version: stable-2.13
550 platforms: !!python/tuple [deb12-amd64]
551 builds: !!python/tuple [std, dist, oot, oot-dist]
552 confs: !!python/tuple [std, agents, debug-rcu, tls_fallback]
553 liburcu_versions: !!python/tuple [stable-0.13, stable-0.14, master]
554 filter: '(build=="std") || ((liburcu_version=="stable-0.13" && (conf=="std" || conf=="agents")))'
555 touchstone: ''
556 - '{job_prefix}lttng-ust_{version}_{buildtype}':
557 buildtype: portbuild
558 version: stable-2.13
559 platforms: !!python/tuple [deb12-armhf, deb12-arm64, deb12-ppc64el, deb12-i386]
560 builds: !!python/tuple [std]
561 confs: !!python/tuple [std, agents]
562 liburcu_versions: !!python/tuple [stable-0.13, master]
563 filter: ''
564 touchstone: ''
565 - '{job_prefix}lttng-ust_{version}_{buildtype}':
566 buildtype: slesbuild
567 version: stable-2.13
568 platforms: !!python/tuple [sles12sp5-amd64, sles15sp4-amd64]
569 builds: !!python/tuple [std]
570 confs: !!python/tuple [agents]
571 liburcu_versions: !!python/tuple [stable-0.13, master]
572 filter: ''
573 touchstone: ''
574 - '{job_prefix}lttng-ust_{version}_{buildtype}':
575 buildtype: elbuild
576 version: stable-2.13
577 platforms: !!python/tuple [el7-amd64, el8-amd64, el9-amd64, el7-arm64, el8-arm64, el9-arm64]
578 builds: !!python/tuple [std]
579 confs: !!python/tuple [std]
580 liburcu_versions: !!python/tuple [stable-0.13, master]
581 filter: ''
582 touchstone: ''
583 - '{job_prefix}lttng-ust_{version}_{buildtype}':
584 buildtype: yoctobuild
585 version: stable-2.13
586 platforms: !!python/tuple [yocto23-powerpcspe, yocto40-powerpc, yocto40-ppc64]
587 builds: !!python/tuple [std]
588 confs: !!python/tuple [std]
589 liburcu_versions: !!python/tuple [stable-0.13, master]
590 filter: ''
591 touchstone: ''
592 - 'lttng-ust_{version}_scan-build':
593 version: stable-2.13
594
595 ## Stable 2.12 ##
596 - '{job_prefix}lttng-ust_{version}_{buildtype}':
597 buildtype: linuxbuild
598 version: stable-2.12
599 platforms: !!python/tuple [deb12-amd64]
600 builds: !!python/tuple [std, dist, oot, oot-dist]
601 confs: !!python/tuple [std, agents, debug-rcu, tls_fallback]
602 liburcu_versions: !!python/tuple [stable-0.13, stable-0.14, master]
603 filter: '(build=="std") || ((liburcu_version=="stable-0.13" && (conf=="std" || conf=="agents")))'
604 touchstone: ''
605 - '{job_prefix}lttng-ust_{version}_{buildtype}':
606 buildtype: portbuild
607 version: stable-2.12
608 platforms: !!python/tuple [deb12-armhf, deb12-arm64, deb12-ppc64el, deb12-i386]
609 builds: !!python/tuple [std]
610 confs: !!python/tuple [std, agents]
611 liburcu_versions: !!python/tuple [stable-0.13, master]
612 filter: ''
613 touchstone: ''
614 - '{job_prefix}lttng-ust_{version}_{buildtype}':
615 buildtype: slesbuild
616 version: stable-2.12
617 platforms: !!python/tuple [sles12sp5-amd64, sles15sp4-amd64]
618 builds: !!python/tuple [std]
619 confs: !!python/tuple [agents]
620 liburcu_versions: !!python/tuple [stable-0.13]
621 filter: ''
622 touchstone: ''
623 - '{job_prefix}lttng-ust_{version}_{buildtype}':
624 buildtype: elbuild
625 version: stable-2.12
626 platforms: !!python/tuple [el7-amd64, el8-amd64, el9-amd64, el7-arm64, el8-arm64, el9-arm64]
627 builds: !!python/tuple [std]
628 confs: !!python/tuple [std]
629 liburcu_versions: !!python/tuple [stable-0.13]
630 filter: ''
631 touchstone: ''
632 - '{job_prefix}lttng-ust_{version}_{buildtype}':
633 buildtype: yoctobuild
634 version: stable-2.12
635 platforms: !!python/tuple [yocto23-powerpcspe, yocto40-powerpc, yocto40-ppc64]
636 builds: !!python/tuple [std]
637 confs: !!python/tuple [std]
638 liburcu_versions: !!python/tuple [stable-0.13]
639 filter: ''
640 touchstone: ''
641 - 'lttng-ust_{version}_scan-build':
642 version: stable-2.12
643
644 - project:
645 name: review-lttng-ust
646 job_prefix: ''
647 github_user: lttng
648 github_name: lttng-ust
649 jobs:
650 ## master ##
651 - 'dev_review_lttng-ust_{version}_{buildtype}':
652 version: master
653 buildtype: linuxbuild
654 platforms: !!python/tuple [deb12-amd64]
655 builds: !!python/tuple [std, oot, dist, oot-dist]
656 confs: !!python/tuple [std, agents]
657 liburcu_versions: !!python/tuple [stable-0.14]
658 filter: ''
659 touchstone: '(build == "std") && (conf == "std")'
660 - 'dev_review_lttng-ust_lttng-tools_{version}_{buildtype}':
661 version: master
662 buildtype: linuxbuild
663 platforms: !!python/tuple [deb12-amd64]
664 builds: !!python/tuple [std, oot, dist, oot-dist]
665 confs: !!python/tuple [std, agents]
666 filter: ''
667 touchstone: ''
668 liburcu_version: stable-0.14
669 babeltrace_version: stable-2.0
670 - 'dev_review_lttng-ust_{version}_{buildtype}':
671 version: master
672 buildtype: portbuild
673 platforms: !!python/tuple [deb12-armhf, deb12-arm64, deb12-ppc64el, deb12-i386]
674 builds: !!python/tuple [std]
675 confs: !!python/tuple [agents]
676 liburcu_versions: !!python/tuple [stable-0.14]
677 filter: ''
678 touchstone: '(platform == "deb12-i386")'
679 - 'dev_review_lttng-ust_{version}_{buildtype}':
680 version: master
681 buildtype: freebsdbuild
682 platforms: !!python/tuple [freebsd-amd64]
683 builds: !!python/tuple [std]
684 confs: !!python/tuple [agents]
685 liburcu_versions: !!python/tuple [stable-0.14]
686 filter: ''
687 touchstone: ''
688
689 ## Stable 2.13 ##
690 - 'dev_review_lttng-ust_{version}_{buildtype}':
691 version: stable-2.13
692 buildtype: linuxbuild
693 platforms: !!python/tuple [deb12-amd64]
694 builds: !!python/tuple [std, oot, dist, oot-dist]
695 confs: !!python/tuple [std, agents]
696 liburcu_versions: !!python/tuple [stable-0.13]
697 filter: ''
698 touchstone: '(build == "std") && (conf == "std")'
699 - 'dev_review_lttng-ust_lttng-tools_{version}_{buildtype}':
700 version: stable-2.13
701 buildtype: linuxbuild
702 platforms: !!python/tuple [deb12-amd64]
703 builds: !!python/tuple [std, oot, dist, oot-dist]
704 confs: !!python/tuple [std, agents]
705 filter: ''
706 touchstone: ''
707 liburcu_version: stable-0.13
708 babeltrace_version: stable-2.0
709 - 'dev_review_lttng-ust_{version}_{buildtype}':
710 version: stable-2.13
711 buildtype: portbuild
712 platforms: !!python/tuple [deb12-armhf, deb12-arm64, deb12-ppc64el, deb12-i386]
713 builds: !!python/tuple [std]
714 confs: !!python/tuple [agents]
715 liburcu_versions: !!python/tuple [stable-0.13]
716 filter: ''
717 touchstone: '(platform == "deb12-i386")'
718
719 ## Stable 2.12 ##
720 - 'dev_review_lttng-ust_{version}_{buildtype}':
721 version: stable-2.12
722 buildtype: linuxbuild
723 platforms: !!python/tuple [deb12-amd64]
724 builds: !!python/tuple [std, oot, dist, oot-dist]
725 confs: !!python/tuple [std, agents]
726 liburcu_versions: !!python/tuple [stable-0.13]
727 filter: ''
728 touchstone: '(build == "std") && (conf == "std")'
729 - 'dev_review_lttng-ust_lttng-tools_{version}_{buildtype}':
730 version: stable-2.12
731 buildtype: linuxbuild
732 platforms: !!python/tuple [deb12-amd64]
733 builds: !!python/tuple [std, oot, dist, oot-dist]
734 confs: !!python/tuple [std, agents]
735 filter: ''
736 touchstone: ''
737 liburcu_version: stable-0.13
738 babeltrace_version: stable-2.0
739 - 'dev_review_lttng-ust_{version}_{buildtype}':
740 version: stable-2.12
741 buildtype: portbuild
742 platforms: !!python/tuple [deb12-armhf, deb12-arm64, deb12-ppc64el, deb12-i386]
743 builds: !!python/tuple [std]
744 confs: !!python/tuple [agents]
745 liburcu_versions: !!python/tuple [stable-0.13]
746 filter: ''
747 touchstone: '(platform == "deb12-i386")'
748
749 - project:
750 name: lttng-ust-views
751 views:
752 - LTTng-ust
This page took 0.044493 seconds and 4 git commands to generate.