jjb: Add lttng-ust w/ urcu stable-0.14 to slesbuild
[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 ## Templates
325 - job-template:
326 name: '{job_prefix}lttng-ust_{version}_{buildtype}'
327 defaults: lttng-ust
328
329 <<: *lttng-ust_matrix_axes_defaults
330 <<: *lttng-ust_builders_defaults
331 <<: *lttng-ust_publishers_defaults
332
333
334 - job-template:
335 name: dev_review_lttng-ust_{version}_{buildtype}
336 defaults: lttng-ust
337 concurrent: true
338
339 scm:
340 - git:
341 url: https://review.lttng.org/lttng-ust
342 refspec: 'refs/changes/*:refs/changes/*'
343 branches:
344 - '$GERRIT_REFSPEC'
345 basedir: src/lttng-ust
346 skip-tag: true
347
348 triggers:
349 - gerrit: &lttng-ust_trigger_gerrit_defaults
350 trigger-on:
351 - comment-added-event:
352 approval-category: 'CI-Build'
353 approval-value: 1
354 projects:
355 - project-compare-type: 'PLAIN'
356 project-pattern: 'lttng-ust'
357 branches:
358 - branch-compare-type: 'PLAIN'
359 branch-pattern: '{version}'
360
361 <<: *lttng-ust_matrix_axes_defaults
362 <<: *lttng-ust_builders_defaults
363 <<: *lttng-ust_publishers_review
364
365 properties:
366 - inject:
367 properties-content: |
368 PROJECT_NAME=lttng-ust
369 - build-discarder:
370 days-to-keep: 1
371 - throttle:
372 option: 'category'
373 categories:
374 - 'gerrit-{buildtype}'
375
376
377 - job-template:
378 name: dev_review_lttng-ust_lttng-tools_{version}_{buildtype}
379 defaults: lttng-ust
380 concurrent: true
381
382 scm:
383 - git:
384 url: https://review.lttng.org/lttng-ust
385 refspec: 'refs/changes/*:refs/changes/*'
386 branches:
387 - '$GERRIT_REFSPEC'
388 basedir: src/lttng-ust
389 skip-tag: true
390
391 triggers:
392 - gerrit: *lttng-ust_trigger_gerrit_defaults
393
394 <<: *lttng-ust_matrix_axes_review_lttng-tools
395 <<: *lttng-ust_builders_review_lttng-tools
396 <<: *lttng-ust_publishers_review
397
398 properties:
399 - inject:
400 properties-content: |
401 PROJECT_NAME=lttng-ust
402 - build-discarder:
403 days-to-keep: 1
404 - throttle:
405 option: 'category'
406 categories:
407 - 'gerrit-{buildtype}'
408
409
410 - job-template:
411 name: lttng-ust_{version}_scan-build
412 defaults: lttng-ust
413 node: 'deb12-amd64'
414
415 triggers:
416 - pollscm:
417 cron: "@daily"
418
419 builders:
420 - copyartifact:
421 <<: *lttng-ust_steps_copyartifact_defaults
422 project: liburcu_master_linuxbuild/platform=deb12-amd64,conf=std,build=std
423 - shell:
424 !include-raw-escape: scripts/common/scan-build.sh
425
426 publishers:
427 - html-publisher:
428 name: 'HTML Report'
429 dir: 'scan-build-archive/'
430 files: 'index.html'
431 - workspace-cleanup: *lttng-ust_publisher_workspace-cleanup_defaults
432 - ircbot: *lttng-ust_publisher_ircbot_defaults
433
434
435 - job-template:
436 name: lttng-ust_{version}_coverity
437 defaults: lttng-ust
438 node: 'deb12-amd64'
439
440 triggers:
441 - pollscm:
442 cron: "@daily"
443
444 wrappers:
445 - ansicolor: *lttng-ust_wrapper_ansicolor_defaults
446 - timeout: *lttng-ust_wrapper_timeout_defaults
447 - timestamps
448 - workspace-cleanup
449 - credentials-binding:
450 - username-password-separated:
451 credential-id: lttng-ust_coverity_token
452 username: COVERITY_SCAN_PROJECT_NAME
453 password: COVERITY_SCAN_TOKEN
454
455 builders:
456 - copyartifact:
457 <<: *lttng-ust_steps_copyartifact_defaults
458 project: liburcu_master_linuxbuild/platform=deb12-amd64,conf=std,build=std
459 - shell:
460 !include-raw-escape: scripts/common/coverity.sh
461
462 publishers:
463 - archive:
464 artifacts: 'analysis-results.tgz,cov-int/**'
465 allow-empty: false
466 - workspace-cleanup: *lttng-ust_publisher_workspace-cleanup_defaults
467 - ircbot: *lttng-ust_publisher_ircbot_defaults
468
469 - job-template:
470 name: dev_review_lttng-ust-java-tests_{version}_{buildtype}
471 defaults: lttng-ust
472 description: |
473 Review tests for LTTng-UST's Java agent.
474 <p>Job is managed by Jenkins Job Builder.</p>
475 project-type: matrix
476 axes:
477 - axis:
478 <<: *lttng-ust_matrix_axis_platform
479 concurrent: true
480 scm:
481 - git:
482 url: https://review.lttng.org/lttng-ust-java-tests
483 refspec: 'refs/changes/*:refs/changes/*'
484 branches:
485 - '$GERRIT_REFSPEC'
486 basedir: 'src/lttng-ust-java-tests'
487 skip-tag: true
488 triggers:
489 - gerrit:
490 <<: *lttng-ust_trigger_gerrit_defaults
491 projects:
492 - project-compare-type: 'PLAIN'
493 project-pattern: 'lttng-ust-java-tests'
494 branches:
495 - branch-compare-type: 'PLAIN'
496 branch-pattern: '{version}'
497 builders:
498 - copyartifact:
499 <<: *lttng-ust_steps_copyartifact_defaults
500 project: 'liburcu_{liburcu_versions[0]}_{buildtype}/platform=${{platform}},conf=std,build=std'
501 - copyartifact:
502 <<: *lttng-ust_steps_copyartifact_defaults
503 project: 'lttng-ust_{lttngust_versions[0]}_{buildtype}/liburcu_version={liburcu_versions[0]},platform=${{platform}},conf=agents,build=std'
504 - copyartifact:
505 <<: *lttng-ust_steps_copyartifact_defaults
506 project: 'lttng-tools_{lttngtools_versions[0]}_{buildtype}/babeltrace_version={babeltrace_versions[0]},liburcu_version={liburcu_versions[0]},platform=${{platform}},conf=agents,build=std'
507 - copyartifact:
508 <<: *lttng-ust_steps_copyartifact_defaults
509 project: 'babeltrace_{babeltrace_versions[0]}_{buildtype}/platform=${{platform}},conf=std,build=std'
510 - shell:
511 !include-raw-escape scripts/lttng-ust/lttng-ust-java-tests.sh
512 properties:
513 - inject:
514 properties-content: |
515 PROJECT_NAME=lttng-ust-java-tests
516 - build-discarder:
517 days-to-keep: 1
518 - throttle:
519 option: 'category'
520 categories:
521 - 'gerrit-{buildtype}'
522 publishers:
523 - archive:
524 artifacts: 'log/lttng-sessiond.log'
525 allow-empty: false
526 - junit:
527 results: 'src/lttng-ust-java-tests/**/target/failsafe-reports/*.xml'
528 - workspace-cleanup
529
530 ## Views
531 - view-template:
532 name: 'LTTng-ust'
533 view-type: list
534 regex: 'lttng-ust[-_].*'
535
536
537 ## Projects
538 - project:
539 name: lttng-ust
540 job_prefix: ''
541 github_user: lttng
542 github_name: lttng-ust
543 email_to: 'ci-notification@lists.lttng.org, cc:mathieu.desnoyers@efficios.com'
544 jobs:
545 ## Master ##
546 - '{job_prefix}lttng-ust_{version}_{buildtype}':
547 buildtype: linuxbuild
548 version: master
549 platforms: !!python/tuple [deb12-amd64]
550 builds: !!python/tuple [std, dist, oot, oot-dist]
551 confs: !!python/tuple [std, agents, debug-rcu, tls_fallback]
552 liburcu_versions: !!python/tuple [stable-0.13, stable-0.14, master]
553 filter: '(build=="std") || ((liburcu_version=="master" && (conf=="std" || conf=="agents")))'
554 touchstone: ''
555 - '{job_prefix}lttng-ust_{version}_{buildtype}':
556 buildtype: portbuild
557 version: master
558 platforms: !!python/tuple [deb12-armhf, deb12-arm64, deb12-ppc64el, deb12-i386]
559 builds: !!python/tuple [std]
560 confs: !!python/tuple [std, agents]
561 liburcu_versions: !!python/tuple [stable-0.13, master]
562 filter: ''
563 touchstone: ''
564 - '{job_prefix}lttng-ust_{version}_{buildtype}':
565 buildtype: slesbuild
566 version: master
567 platforms: !!python/tuple [sles12sp5-amd64, sles15sp4-amd64, sles15sp5-amd64]
568 builds: !!python/tuple [std]
569 confs: !!python/tuple [agents]
570 liburcu_versions: !!python/tuple [stable-0.13, stable-0.14, master]
571 filter: ''
572 touchstone: ''
573 - '{job_prefix}lttng-ust_{version}_{buildtype}':
574 buildtype: elbuild
575 version: master
576 platforms: !!python/tuple [el7-amd64, el8-amd64, el9-amd64, el7-arm64, el8-arm64, el9-arm64]
577 builds: !!python/tuple [std]
578 confs: !!python/tuple [std]
579 liburcu_versions: !!python/tuple [stable-0.13, master]
580 filter: ''
581 touchstone: ''
582 - '{job_prefix}lttng-ust_{version}_{buildtype}':
583 buildtype: yoctobuild
584 version: master
585 platforms: !!python/tuple [yocto23-powerpcspe, yocto40-powerpc, yocto40-ppc64]
586 builds: !!python/tuple [std]
587 confs: !!python/tuple [std]
588 liburcu_versions: !!python/tuple [stable-0.13, master]
589 filter: ''
590 touchstone: ''
591 - '{job_prefix}lttng-ust_{version}_{buildtype}':
592 buildtype: freebsdbuild
593 version: master
594 platforms: !!python/tuple [freebsd-amd64]
595 builds: !!python/tuple [std]
596 confs: !!python/tuple [agents]
597 liburcu_versions: !!python/tuple [stable-0.13, master]
598 filter: ''
599 touchstone: ''
600 - 'lttng-ust_{version}_scan-build':
601 version: master
602 - 'lttng-ust_{version}_coverity':
603 version: master
604
605 ## Stable 2.13 ##
606 - '{job_prefix}lttng-ust_{version}_{buildtype}':
607 buildtype: linuxbuild
608 version: stable-2.13
609 platforms: !!python/tuple [deb12-amd64]
610 builds: !!python/tuple [std, dist, oot, oot-dist]
611 confs: !!python/tuple [std, agents, debug-rcu, tls_fallback]
612 liburcu_versions: !!python/tuple [stable-0.13, stable-0.14, master]
613 filter: '(build=="std") || ((liburcu_version=="stable-0.13" && (conf=="std" || conf=="agents")))'
614 touchstone: ''
615 - '{job_prefix}lttng-ust_{version}_{buildtype}':
616 buildtype: portbuild
617 version: stable-2.13
618 platforms: !!python/tuple [deb12-armhf, deb12-arm64, deb12-ppc64el, deb12-i386]
619 builds: !!python/tuple [std]
620 confs: !!python/tuple [std, agents]
621 liburcu_versions: !!python/tuple [stable-0.13, master]
622 filter: ''
623 touchstone: ''
624 - '{job_prefix}lttng-ust_{version}_{buildtype}':
625 buildtype: slesbuild
626 version: stable-2.13
627 platforms: !!python/tuple [sles12sp5-amd64, sles15sp4-amd64, sles15sp5-amd64]
628 builds: !!python/tuple [std]
629 confs: !!python/tuple [agents]
630 liburcu_versions: !!python/tuple [stable-0.13, master]
631 filter: ''
632 touchstone: ''
633 - '{job_prefix}lttng-ust_{version}_{buildtype}':
634 buildtype: elbuild
635 version: stable-2.13
636 platforms: !!python/tuple [el7-amd64, el8-amd64, el9-amd64, el7-arm64, el8-arm64, el9-arm64]
637 builds: !!python/tuple [std]
638 confs: !!python/tuple [std]
639 liburcu_versions: !!python/tuple [stable-0.13, master]
640 filter: ''
641 touchstone: ''
642 - '{job_prefix}lttng-ust_{version}_{buildtype}':
643 buildtype: yoctobuild
644 version: stable-2.13
645 platforms: !!python/tuple [yocto23-powerpcspe, yocto40-powerpc, yocto40-ppc64]
646 builds: !!python/tuple [std]
647 confs: !!python/tuple [std]
648 liburcu_versions: !!python/tuple [stable-0.13, master]
649 filter: ''
650 touchstone: ''
651 - 'lttng-ust_{version}_scan-build':
652 version: stable-2.13
653
654 ## Stable 2.12 ##
655 - '{job_prefix}lttng-ust_{version}_{buildtype}':
656 buildtype: linuxbuild
657 version: stable-2.12
658 platforms: !!python/tuple [deb12-amd64]
659 builds: !!python/tuple [std, dist, oot, oot-dist]
660 confs: !!python/tuple [std, agents, debug-rcu, tls_fallback]
661 liburcu_versions: !!python/tuple [stable-0.13, stable-0.14, master]
662 filter: '(build=="std") || ((liburcu_version=="stable-0.13" && (conf=="std" || conf=="agents")))'
663 touchstone: ''
664 - '{job_prefix}lttng-ust_{version}_{buildtype}':
665 buildtype: portbuild
666 version: stable-2.12
667 platforms: !!python/tuple [deb12-armhf, deb12-arm64, deb12-ppc64el, deb12-i386]
668 builds: !!python/tuple [std]
669 confs: !!python/tuple [std, agents]
670 liburcu_versions: !!python/tuple [stable-0.13, master]
671 filter: ''
672 touchstone: ''
673 - '{job_prefix}lttng-ust_{version}_{buildtype}':
674 buildtype: slesbuild
675 version: stable-2.12
676 platforms: !!python/tuple [sles12sp5-amd64, sles15sp4-amd64, sles15sp5-amd64]
677 builds: !!python/tuple [std]
678 confs: !!python/tuple [agents]
679 liburcu_versions: !!python/tuple [stable-0.13]
680 filter: ''
681 touchstone: ''
682 - '{job_prefix}lttng-ust_{version}_{buildtype}':
683 buildtype: elbuild
684 version: stable-2.12
685 platforms: !!python/tuple [el7-amd64, el8-amd64, el9-amd64, el7-arm64, el8-arm64, el9-arm64]
686 builds: !!python/tuple [std]
687 confs: !!python/tuple [std]
688 liburcu_versions: !!python/tuple [stable-0.13]
689 filter: ''
690 touchstone: ''
691 - '{job_prefix}lttng-ust_{version}_{buildtype}':
692 buildtype: yoctobuild
693 version: stable-2.12
694 platforms: !!python/tuple [yocto23-powerpcspe, yocto40-powerpc, yocto40-ppc64]
695 builds: !!python/tuple [std]
696 confs: !!python/tuple [std]
697 liburcu_versions: !!python/tuple [stable-0.13]
698 filter: ''
699 touchstone: ''
700 - 'lttng-ust_{version}_scan-build':
701 version: stable-2.12
702
703 - project:
704 name: review-lttng-ust
705 job_prefix: ''
706 github_user: lttng
707 github_name: lttng-ust
708 jobs:
709 ## master ##
710 - 'dev_review_lttng-ust_{version}_{buildtype}':
711 version: master
712 buildtype: linuxbuild
713 platforms: !!python/tuple [deb12-amd64]
714 builds: !!python/tuple [std, oot, dist, oot-dist]
715 confs: !!python/tuple [std, agents]
716 liburcu_versions: !!python/tuple [stable-0.14]
717 filter: ''
718 touchstone: '(build == "std") && (conf == "std")'
719 - 'dev_review_lttng-ust_lttng-tools_{version}_{buildtype}':
720 version: master
721 buildtype: linuxbuild
722 platforms: !!python/tuple [deb12-amd64]
723 builds: !!python/tuple [std, oot, dist, oot-dist]
724 confs: !!python/tuple [std, agents]
725 filter: ''
726 touchstone: ''
727 liburcu_version: stable-0.14
728 babeltrace_version: stable-2.0
729 - 'dev_review_lttng-ust_lttng-tools_{version}_{buildtype}':
730 version: master
731 buildtype: slesbuild
732 platforms: !!python/tuple [sles12sp5-amd64, sles15sp4-amd64, sles15sp5-amd64]
733 builds: !!python/tuple [std]
734 confs: !!python/tuple [agents]
735 filter: ''
736 touchstone: ''
737 liburcu_version: stable-0.14
738 babeltrace_version: stable-2.0
739 - 'dev_review_lttng-ust_{version}_{buildtype}':
740 version: master
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.14]
746 filter: ''
747 touchstone: '(platform == "deb12-i386")'
748 - 'dev_review_lttng-ust_{version}_{buildtype}':
749 version: master
750 buildtype: freebsdbuild
751 platforms: !!python/tuple [freebsd-amd64]
752 builds: !!python/tuple [std]
753 confs: !!python/tuple [agents]
754 liburcu_versions: !!python/tuple [stable-0.14]
755 filter: ''
756 touchstone: ''
757
758 ## Stable 2.13 ##
759 - 'dev_review_lttng-ust_{version}_{buildtype}':
760 version: stable-2.13
761 buildtype: linuxbuild
762 platforms: !!python/tuple [deb12-amd64]
763 builds: !!python/tuple [std, oot, dist, oot-dist]
764 confs: !!python/tuple [std, agents]
765 liburcu_versions: !!python/tuple [stable-0.13]
766 filter: ''
767 touchstone: '(build == "std") && (conf == "std")'
768 - 'dev_review_lttng-ust_lttng-tools_{version}_{buildtype}':
769 version: stable-2.13
770 buildtype: linuxbuild
771 platforms: !!python/tuple [deb12-amd64]
772 builds: !!python/tuple [std, oot, dist, oot-dist]
773 confs: !!python/tuple [std, agents]
774 filter: ''
775 touchstone: ''
776 liburcu_version: stable-0.13
777 babeltrace_version: stable-2.0
778 - 'dev_review_lttng-ust_{version}_{buildtype}':
779 version: stable-2.13
780 buildtype: portbuild
781 platforms: !!python/tuple [deb12-armhf, deb12-arm64, deb12-ppc64el, deb12-i386]
782 builds: !!python/tuple [std]
783 confs: !!python/tuple [agents]
784 liburcu_versions: !!python/tuple [stable-0.13]
785 filter: ''
786 touchstone: '(platform == "deb12-i386")'
787
788 ## Stable 2.12 ##
789 - 'dev_review_lttng-ust_{version}_{buildtype}':
790 version: stable-2.12
791 buildtype: linuxbuild
792 platforms: !!python/tuple [deb12-amd64]
793 builds: !!python/tuple [std, oot, dist, oot-dist]
794 confs: !!python/tuple [std, agents]
795 liburcu_versions: !!python/tuple [stable-0.13]
796 filter: ''
797 touchstone: '(build == "std") && (conf == "std")'
798 - 'dev_review_lttng-ust_lttng-tools_{version}_{buildtype}':
799 version: stable-2.12
800 buildtype: linuxbuild
801 platforms: !!python/tuple [deb12-amd64]
802 builds: !!python/tuple [std, oot, dist, oot-dist]
803 confs: !!python/tuple [std, agents]
804 filter: ''
805 touchstone: ''
806 liburcu_version: stable-0.13
807 babeltrace_version: stable-2.0
808 - 'dev_review_lttng-ust_{version}_{buildtype}':
809 version: stable-2.12
810 buildtype: portbuild
811 platforms: !!python/tuple [deb12-armhf, deb12-arm64, deb12-ppc64el, deb12-i386]
812 builds: !!python/tuple [std]
813 confs: !!python/tuple [agents]
814 liburcu_versions: !!python/tuple [stable-0.13]
815 filter: ''
816 touchstone: '(platform == "deb12-i386")'
817
818 - project:
819 name: review-lttng-ust-java
820 job_prefix: ''
821 github_user: lttng
822 github_name: lttng-ust-java-tests
823 #
824 filter: ''
825 groups: '!domain:log4j2'
826 java_versions: !!python/tuple [java-11-openjdk]
827 touchstone: ''
828 version: master
829 #
830 babeltrace_versions: !!python/tuple [stable-2.0]
831 liburcu_versions: !!python/tuple [master]
832 lttngtools_versions: !!python/tuple [master]
833 lttngust_versions: !!python/tuple [master]
834 #
835 jobs:
836 - 'dev_review_lttng-ust-java-tests_{version}_{buildtype}':
837 buildtype: linuxbuild
838 platforms: !!python/tuple [deb12-amd64]
839 - 'dev_review_lttng-ust-java-tests_{version}_{buildtype}':
840 buildtype: slesbuild
841 platforms: !!python/tuple [sles12sp5-amd64, sles15sp4-amd64, sles15sp5-amd64]
842
843 - project:
844 name: lttng-ust-views
845 views:
846 - LTTng-ust
This page took 0.047654 seconds and 4 git commands to generate.