jjb: lttng-ust: split gerrit jobs by branch
[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 allow-empty: false
245 - workspace-cleanup: &lttng-ust_publisher_workspace-cleanup_defaults
246 clean-if:
247 - failure: false
248 - ircbot: &lttng-ust_publisher_ircbot_defaults
249 strategy: statechange-only
250 message-type: summary-scm
251 matrix-notifier: only-configurations
252 - email-ext: &lttng-ust_publisher_email-ext_defaults
253 recipients: '{obj:email_to}'
254 reply-to: ci-notification@lists.lttng.org
255 always: false
256 unstable: false
257 first-failure: true
258 first-unstable: true
259 not-built: false
260 aborted: false
261 regression: false
262 failure: false
263 second-failure: false
264 improvement: false
265 still-failing: false
266 success: false
267 fixed: false
268 fixed-unhealthy: true
269 still-unstable: false
270 pre-build: false
271 matrix-trigger: only-parent
272 send-to:
273 - recipients
274
275 - _lttng-ust_publishers_review: &lttng-ust_publishers_review
276 name: 'lttng-ust_publishers_review'
277 publishers:
278 - tap: *lttng-ust_publisher_tap_defaults
279 # Fail job on any compiler warnings
280 - raw:
281 xml: |
282 <io.jenkins.plugins.analysis.core.steps.IssuesRecorder plugin="warnings-ng">
283 <analysisTools>
284 <io.jenkins.plugins.analysis.warnings.Gcc4>
285 <id/>
286 <name/>
287 <jenkins plugin="plugin-util-api"/>
288 <pattern/>
289 <reportEncoding/>
290 <skipSymbolicLinks>false</skipSymbolicLinks>
291 </io.jenkins.plugins.analysis.warnings.Gcc4>
292 </analysisTools>
293 <sourceCodeEncoding/>
294 <sourceDirectory/>
295 <sourceDirectories/>
296 <ignoreQualityGate>false</ignoreQualityGate>
297 <ignoreFailedBuilds>true</ignoreFailedBuilds>
298 <failOnError>false</failOnError>
299 <healthy>0</healthy>
300 <unhealthy>0</unhealthy>
301 <minimumSeverity plugin="analysis-model-api">
302 <name>LOW</name>
303 </minimumSeverity>
304 <filters/>
305 <isEnabledForFailure>true</isEnabledForFailure>
306 <isAggregatingResults>true</isAggregatingResults>
307 <isBlameDisabled>false</isBlameDisabled>
308 <skipPublishingChecks>true</skipPublishingChecks>
309 <publishAllIssues>false</publishAllIssues>
310 <qualityGates>
311 <io.jenkins.plugins.analysis.core.util.QualityGate>
312 <threshold>1</threshold>
313 <type>TOTAL</type>
314 <status>FAILED</status>
315 </io.jenkins.plugins.analysis.core.util.QualityGate>
316 </qualityGates>
317 <trendChartType>AGGREGATION_TOOLS</trendChartType>
318 <scm/>
319 </io.jenkins.plugins.analysis.core.steps.IssuesRecorder>
320 - archive: *lttng-ust_publisher_archive_defaults
321 - workspace-cleanup: *lttng-ust_publisher_workspace-cleanup_defaults
322
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: 'bionic-amd64'
414
415 triggers:
416 - pollscm:
417 cron: "@daily"
418
419 builders:
420 - copyartifact:
421 <<: *lttng-ust_steps_copyartifact_defaults
422 project: liburcu_master_build/platform=bionic-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: 'bionic-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_build/platform=bionic-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
470 ## Views
471 - view-template:
472 name: 'LTTng-ust'
473 view-type: list
474 regex: 'lttng-ust[-_].*'
475
476
477 ## Projects
478 - project:
479 name: lttng-ust
480 job_prefix: ''
481 github_user: lttng
482 github_name: lttng-ust
483 email_to: 'ci-notification@lists.lttng.org, cc:mathieu.desnoyers@efficios.com'
484 jobs:
485 ## Master ##
486 - '{job_prefix}lttng-ust_{version}_{buildtype}':
487 buildtype: linuxbuild
488 version: master
489 platforms: !!python/tuple [jammy-amd64]
490 builds: !!python/tuple [std, dist, oot, oot-dist]
491 confs: !!python/tuple [std, agents, debug-rcu, tls_fallback]
492 liburcu_versions: !!python/tuple [stable-0.13, stable-0.14, master]
493 filter: '(build=="std") || ((liburcu_version=="master" && (conf=="std" || conf=="agents")))'
494 touchstone: ''
495 - '{job_prefix}lttng-ust_{version}_{buildtype}':
496 buildtype: build
497 version: master
498 platforms: !!python/tuple [bionic-amd64]
499 builds: !!python/tuple [std, dist, oot, oot-dist]
500 confs: !!python/tuple [std, agents, debug-rcu, tls_fallback]
501 liburcu_versions: !!python/tuple [stable-0.13, stable-0.14, master]
502 filter: '(build=="std") || ((liburcu_version=="master" && (conf=="std" || conf=="agents")))'
503 touchstone: ''
504 - '{job_prefix}lttng-ust_{version}_{buildtype}':
505 buildtype: portbuild
506 version: master
507 platforms: !!python/tuple [deb11-armhf, deb11-arm64, deb11-ppc64el, deb11-i386]
508 builds: !!python/tuple [std]
509 confs: !!python/tuple [std, agents]
510 liburcu_versions: !!python/tuple [stable-0.13, master]
511 filter: ''
512 touchstone: ''
513 - '{job_prefix}lttng-ust_{version}_{buildtype}':
514 buildtype: slesbuild
515 version: master
516 platforms: !!python/tuple [sles12sp5-amd64, sles15sp4-amd64]
517 builds: !!python/tuple [std]
518 confs: !!python/tuple [agents]
519 liburcu_versions: !!python/tuple [stable-0.13, master]
520 filter: ''
521 touchstone: ''
522 - '{job_prefix}lttng-ust_{version}_{buildtype}':
523 buildtype: elbuild
524 version: master
525 platforms: !!python/tuple [el7-amd64, el8-amd64, el9-amd64]
526 builds: !!python/tuple [std]
527 confs: !!python/tuple [std]
528 liburcu_versions: !!python/tuple [stable-0.13, master]
529 filter: ''
530 touchstone: ''
531 - '{job_prefix}lttng-ust_{version}_{buildtype}':
532 buildtype: yoctobuild
533 version: master
534 platforms: !!python/tuple [yocto23-powerpcspe, yocto23-powerpc, yocto31-ppc64]
535 builds: !!python/tuple [std]
536 confs: !!python/tuple [std]
537 liburcu_versions: !!python/tuple [stable-0.13, master]
538 filter: ''
539 touchstone: ''
540 - '{job_prefix}lttng-ust_{version}_{buildtype}':
541 buildtype: freebsdbuild
542 version: master
543 platforms: !!python/tuple [freebsd-amd64]
544 builds: !!python/tuple [std]
545 confs: !!python/tuple [agents]
546 liburcu_versions: !!python/tuple [stable-0.13, master]
547 filter: ''
548 touchstone: ''
549 - 'lttng-ust_{version}_scan-build':
550 version: master
551 - 'lttng-ust_{version}_coverity':
552 version: master
553
554 ## Stable 2.13 ##
555 - '{job_prefix}lttng-ust_{version}_{buildtype}':
556 buildtype: linuxbuild
557 version: stable-2.13
558 platforms: !!python/tuple [jammy-amd64]
559 builds: !!python/tuple [std, dist, oot, oot-dist]
560 confs: !!python/tuple [std, agents, debug-rcu, tls_fallback]
561 liburcu_versions: !!python/tuple [stable-0.13, stable-0.14, master]
562 filter: '(build=="std") || ((liburcu_version=="stable-0.13" && (conf=="std" || conf=="agents")))'
563 touchstone: ''
564 - '{job_prefix}lttng-ust_{version}_{buildtype}':
565 buildtype: build
566 version: stable-2.13
567 platforms: !!python/tuple [bionic-amd64]
568 builds: !!python/tuple [std, dist, oot, oot-dist]
569 confs: !!python/tuple [std, agents, debug-rcu, tls_fallback]
570 liburcu_versions: !!python/tuple [stable-0.13, stable-0.14, master]
571 filter: '(build=="std") || ((liburcu_version=="stable-0.13" && (conf=="std" || conf=="agents")))'
572 touchstone: ''
573 - '{job_prefix}lttng-ust_{version}_{buildtype}':
574 buildtype: portbuild
575 version: stable-2.13
576 platforms: !!python/tuple [deb11-armhf, deb11-arm64, deb11-ppc64el, deb11-i386]
577 builds: !!python/tuple [std]
578 confs: !!python/tuple [std, agents]
579 liburcu_versions: !!python/tuple [stable-0.13, master]
580 filter: ''
581 touchstone: ''
582 - '{job_prefix}lttng-ust_{version}_{buildtype}':
583 buildtype: slesbuild
584 version: stable-2.13
585 platforms: !!python/tuple [sles12sp5-amd64, sles15sp4-amd64]
586 builds: !!python/tuple [std]
587 confs: !!python/tuple [agents]
588 liburcu_versions: !!python/tuple [stable-0.13, master]
589 filter: ''
590 touchstone: ''
591 - '{job_prefix}lttng-ust_{version}_{buildtype}':
592 buildtype: elbuild
593 version: stable-2.13
594 platforms: !!python/tuple [el7-amd64, el8-amd64, el9-amd64]
595 builds: !!python/tuple [std]
596 confs: !!python/tuple [std]
597 liburcu_versions: !!python/tuple [stable-0.13, master]
598 filter: ''
599 touchstone: ''
600 - '{job_prefix}lttng-ust_{version}_{buildtype}':
601 buildtype: yoctobuild
602 version: stable-2.13
603 platforms: !!python/tuple [yocto23-powerpcspe, yocto23-powerpc, yocto31-ppc64]
604 builds: !!python/tuple [std]
605 confs: !!python/tuple [std]
606 liburcu_versions: !!python/tuple [stable-0.13, master]
607 filter: ''
608 touchstone: ''
609 - 'lttng-ust_{version}_scan-build':
610 version: stable-2.13
611
612 ## Stable 2.12 ##
613 - '{job_prefix}lttng-ust_{version}_{buildtype}':
614 buildtype: linuxbuild
615 version: stable-2.12
616 platforms: !!python/tuple [jammy-amd64]
617 builds: !!python/tuple [std, dist, oot, oot-dist]
618 confs: !!python/tuple [std, agents, debug-rcu, tls_fallback]
619 liburcu_versions: !!python/tuple [stable-0.13, stable-0.14, master]
620 filter: '(build=="std") || ((liburcu_version=="stable-0.13" && (conf=="std" || conf=="agents")))'
621 touchstone: ''
622 - '{job_prefix}lttng-ust_{version}_{buildtype}':
623 buildtype: build
624 version: stable-2.12
625 platforms: !!python/tuple [bionic-amd64]
626 builds: !!python/tuple [std, dist, oot, oot-dist]
627 confs: !!python/tuple [std, agents, debug-rcu, tls_fallback]
628 liburcu_versions: !!python/tuple [stable-0.13, stable-0.14, master]
629 filter: '(build=="std") || ((liburcu_version=="stable-0.13" && (conf=="std" || conf=="agents")))'
630 touchstone: ''
631 - '{job_prefix}lttng-ust_{version}_{buildtype}':
632 buildtype: portbuild
633 version: stable-2.12
634 platforms: !!python/tuple [deb11-armhf, deb11-arm64, deb11-ppc64el, deb11-i386]
635 builds: !!python/tuple [std]
636 confs: !!python/tuple [std, agents]
637 liburcu_versions: !!python/tuple [stable-0.13, master]
638 filter: ''
639 touchstone: ''
640 - '{job_prefix}lttng-ust_{version}_{buildtype}':
641 buildtype: slesbuild
642 version: stable-2.12
643 platforms: !!python/tuple [sles12sp5-amd64, sles15sp4-amd64]
644 builds: !!python/tuple [std]
645 confs: !!python/tuple [agents]
646 liburcu_versions: !!python/tuple [stable-0.13]
647 filter: ''
648 touchstone: ''
649 - '{job_prefix}lttng-ust_{version}_{buildtype}':
650 buildtype: elbuild
651 version: stable-2.12
652 platforms: !!python/tuple [el7-amd64, el8-amd64, el9-amd64]
653 builds: !!python/tuple [std]
654 confs: !!python/tuple [std]
655 liburcu_versions: !!python/tuple [stable-0.13]
656 filter: ''
657 touchstone: ''
658 - '{job_prefix}lttng-ust_{version}_{buildtype}':
659 buildtype: yoctobuild
660 version: stable-2.12
661 platforms: !!python/tuple [yocto23-powerpcspe, yocto23-powerpc, yocto31-ppc64]
662 builds: !!python/tuple [std]
663 confs: !!python/tuple [std]
664 liburcu_versions: !!python/tuple [stable-0.13]
665 filter: ''
666 touchstone: ''
667 - 'lttng-ust_{version}_scan-build':
668 version: stable-2.12
669
670
671 - project:
672 name: lttng-ust-dev-upstream
673 job_prefix: dev_upstream_
674 github_user: lttng
675 github_name: lttng-ust
676 email_to: 'ci-notification@lists.lttng.org, cc:mathieu.desnoyers@efficios.com'
677 jobs:
678 ## Stable 2.11 ##
679 - '{job_prefix}lttng-ust_{version}_{buildtype}':
680 buildtype: linuxbuild
681 version: stable-2.11
682 platforms: !!python/tuple [jammy-amd64]
683 builds: !!python/tuple [std, dist, oot, oot-dist]
684 confs: !!python/tuple [std, agents, debug-rcu, tls_fallback]
685 liburcu_versions: !!python/tuple [stable-0.11]
686 filter: '(build=="std") || (conf=="std" || conf=="agents")'
687 touchstone: ''
688 - '{job_prefix}lttng-ust_{version}_{buildtype}':
689 buildtype: portbuild
690 version: stable-2.11
691 platforms: !!python/tuple [deb11-armhf, deb11-arm64, deb11-ppc64el, deb11-i386]
692 builds: !!python/tuple [std]
693 confs: !!python/tuple [agents]
694 liburcu_versions: !!python/tuple [stable-0.11]
695 filter: ''
696 touchstone: ''
697 - '{job_prefix}lttng-ust_{version}_{buildtype}':
698 buildtype: slesbuild
699 version: stable-2.11
700 platforms: !!python/tuple [sles12sp5-amd64, sles15sp4-amd64]
701 builds: !!python/tuple [std]
702 confs: !!python/tuple [agents]
703 liburcu_versions: !!python/tuple [stable-0.11]
704 filter: ''
705 touchstone: ''
706 - '{job_prefix}lttng-ust_{version}_{buildtype}':
707 buildtype: elbuild
708 version: stable-2.11
709 platforms: !!python/tuple [el7-amd64, el8-amd64, el9-amd64]
710 builds: !!python/tuple [std]
711 confs: !!python/tuple [std]
712 liburcu_versions: !!python/tuple [stable-0.11]
713 filter: ''
714 touchstone: ''
715
716 ## Stable 2.10 ##
717 - '{job_prefix}lttng-ust_{version}_{buildtype}':
718 buildtype: linuxbuild
719 version: stable-2.10
720 platforms: !!python/tuple [jammy-amd64]
721 builds: !!python/tuple [std, dist, oot, oot-dist]
722 confs: !!python/tuple [std, agents, debug-rcu, tls_fallback]
723 liburcu_versions: !!python/tuple [stable-0.9]
724 filter: '(build=="std") || (conf=="std" || conf=="agents")'
725 touchstone: ''
726 - '{job_prefix}lttng-ust_{version}_{buildtype}':
727 buildtype: portbuild
728 version: stable-2.10
729 platforms: !!python/tuple [deb11-armhf, deb11-arm64, deb11-ppc64el, deb11-i386]
730 builds: !!python/tuple [std]
731 confs: !!python/tuple [agents]
732 liburcu_versions: !!python/tuple [stable-0.9]
733 filter: ''
734 touchstone: ''
735 - '{job_prefix}lttng-ust_{version}_{buildtype}':
736 buildtype: slesbuild
737 version: stable-2.10
738 platforms: !!python/tuple [sles12sp5-amd64, sles15sp4-amd64]
739 builds: !!python/tuple [std]
740 confs: !!python/tuple [agents]
741 liburcu_versions: !!python/tuple [stable-0.9]
742 filter: ''
743 touchstone: ''
744 - '{job_prefix}lttng-ust_{version}_{buildtype}':
745 buildtype: elbuild
746 version: stable-2.10
747 platforms: !!python/tuple [el7-amd64, el8-amd64, el9-amd64]
748 builds: !!python/tuple [std]
749 confs: !!python/tuple [std]
750 liburcu_versions: !!python/tuple [stable-0.9]
751 filter: ''
752 touchstone: ''
753
754
755 - project:
756 name: review-lttng-ust
757 job_prefix: ''
758 github_user: lttng
759 github_name: lttng-ust
760 jobs:
761 ## master ##
762 - 'dev_review_lttng-ust_{version}_{buildtype}':
763 version: master
764 buildtype: build
765 platforms: !!python/tuple [bionic-amd64]
766 builds: !!python/tuple [std, oot, dist, oot-dist]
767 confs: !!python/tuple [std, agents]
768 liburcu_versions: !!python/tuple [stable-0.14]
769 filter: ''
770 touchstone: '(build == "std") && (conf == "std")'
771 - 'dev_review_lttng-ust_lttng-tools_{version}_{buildtype}':
772 version: master
773 buildtype: build
774 platforms: !!python/tuple [bionic-amd64]
775 builds: !!python/tuple [std, oot, dist, oot-dist]
776 confs: !!python/tuple [std, agents]
777 filter: ''
778 touchstone: ''
779 liburcu_version: stable-0.14
780 babeltrace_version: stable-2.0
781 - 'dev_review_lttng-ust_{version}_{buildtype}':
782 version: master
783 buildtype: portbuild
784 platforms: !!python/tuple [deb11-armhf, deb11-arm64, deb11-ppc64el, deb11-i386]
785 builds: !!python/tuple [std]
786 confs: !!python/tuple [agents]
787 liburcu_versions: !!python/tuple [stable-0.14]
788 filter: ''
789 touchstone: '(platform == "deb11-i386")'
790 - 'dev_review_lttng-ust_{version}_{buildtype}':
791 version: master
792 buildtype: freebsdbuild
793 platforms: !!python/tuple [freebsd-amd64]
794 builds: !!python/tuple [std]
795 confs: !!python/tuple [agents]
796 liburcu_versions: !!python/tuple [stable-0.14]
797 filter: ''
798 touchstone: ''
799
800 ## Stable 2.13 ##
801 - 'dev_review_lttng-ust_{version}_{buildtype}':
802 version: stable-2.13
803 buildtype: build
804 platforms: !!python/tuple [bionic-amd64]
805 builds: !!python/tuple [std, oot, dist, oot-dist]
806 confs: !!python/tuple [std, agents]
807 liburcu_versions: !!python/tuple [stable-0.13]
808 filter: ''
809 touchstone: '(build == "std") && (conf == "std")'
810 - 'dev_review_lttng-ust_lttng-tools_{version}_{buildtype}':
811 version: stable-2.13
812 buildtype: build
813 platforms: !!python/tuple [bionic-amd64]
814 builds: !!python/tuple [std, oot, dist, oot-dist]
815 confs: !!python/tuple [std, agents]
816 filter: ''
817 touchstone: ''
818 liburcu_version: stable-0.13
819 babeltrace_version: stable-2.0
820 - 'dev_review_lttng-ust_{version}_{buildtype}':
821 version: stable-2.13
822 buildtype: portbuild
823 platforms: !!python/tuple [deb11-armhf, deb11-arm64, deb11-ppc64el, deb11-i386]
824 builds: !!python/tuple [std]
825 confs: !!python/tuple [agents]
826 liburcu_versions: !!python/tuple [stable-0.13]
827 filter: ''
828 touchstone: '(platform == "deb11-i386")'
829
830 ## Stable 2.12 ##
831 - 'dev_review_lttng-ust_{version}_{buildtype}':
832 version: stable-2.12
833 buildtype: build
834 platforms: !!python/tuple [bionic-amd64]
835 builds: !!python/tuple [std, oot, dist, oot-dist]
836 confs: !!python/tuple [std, agents]
837 liburcu_versions: !!python/tuple [stable-0.13]
838 filter: ''
839 touchstone: '(build == "std") && (conf == "std")'
840 - 'dev_review_lttng-ust_lttng-tools_{version}_{buildtype}':
841 version: stable-2.12
842 buildtype: build
843 platforms: !!python/tuple [bionic-amd64]
844 builds: !!python/tuple [std, oot, dist, oot-dist]
845 confs: !!python/tuple [std, agents]
846 filter: ''
847 touchstone: ''
848 liburcu_version: stable-0.13
849 babeltrace_version: stable-2.0
850 - 'dev_review_lttng-ust_{version}_{buildtype}':
851 version: stable-2.12
852 buildtype: portbuild
853 platforms: !!python/tuple [deb11-armhf, deb11-arm64, deb11-ppc64el, deb11-i386]
854 builds: !!python/tuple [std]
855 confs: !!python/tuple [agents]
856 liburcu_versions: !!python/tuple [stable-0.13]
857 filter: ''
858 touchstone: '(platform == "deb11-i386")'
859
860 - project:
861 name: lttng-ust-views
862 views:
863 - LTTng-ust
This page took 0.05577 seconds and 5 git commands to generate.