jjb: drop macos-amd64 except for binutils-gdb
[lttng-ci.git] / jobs / babeltrace.yaml
1 - defaults:
2 name: babeltrace
3 description: |
4 The Babeltrace project provides trace read and write libraries, as well
5 as a trace converter. Plugins can be created for any trace format to
6 allow its conversion to/from another trace format.
7
8 The main format expected to be converted to/from is the Common Trace
9 Format (CTF). The default input format of the "babeltrace" command is
10 CTF, and its default output format is a human-readable text log. The
11 "babeltrace-log" command converts from a text log to a CTF trace.
12
13 <p>Job is managed by Jenkins Job Builder.</p>
14
15 project-type: freestyle
16
17 wrappers:
18 - ansicolor: &babeltrace_wrapper_ansicolor_defaults
19 colormap: xterm
20 - timeout: &babeltrace_wrapper_timeout_defaults
21 timeout: 20
22 fail: true
23 type: no-activity
24 write-description: "<h1 style=\"color:red\">This build failed due to timeout.</h1>"
25 - timestamps
26 - workspace-cleanup
27
28 scm:
29 - git: &babeltrace_scm_git_default
30 url: https://github.com/{github_user}/{github_name}.git
31 browser: githubweb
32 browser-url: https://github.com/{github_user}/{github_name}
33 branches:
34 - origin/{version}
35 basedir: src/babeltrace
36 skip-tag: true
37
38 triggers:
39 - pollscm:
40 cron: "@hourly"
41
42 properties:
43 - inject:
44 properties-content: |
45 PROJECT_NAME=babeltrace
46 - build-discarder:
47 num-to-keep: 10
48 artifact-num-to-keep: 2
49 - github:
50 url: https://github.com/{github_user}/{github_name}
51
52
53 ## Anchors
54 - job-template: &babeltrace_matrix_axes_defaults
55 name: 'babeltrace_matrix_axes_defaults'
56 project-type: matrix
57 node: 'master' # Applies only to matrix flyweight task
58 execution-strategy:
59 combination-filter: '{filter}'
60 touchstone:
61 expr: '{touchstone}'
62 result: unstable
63 axes:
64 - axis: &babeltrace_matrix_axis_platform
65 type: slave
66 name: platform
67 values: '{obj:platforms}'
68 - axis: &babeltrace_matrix_axis_conf
69 type: user-defined
70 name: conf
71 values: '{obj:confs}'
72 - axis: &babeltrace_matrix_axis_build
73 type: user-defined
74 name: build
75 values: '{obj:builds}'
76
77 - job-template: &babeltrace_matrix_axes_cc
78 name: 'babeltrace_matrix_axes_cc'
79
80 <<: *babeltrace_matrix_axes_defaults
81
82 axes:
83 - axis: *babeltrace_matrix_axis_platform
84 - axis: *babeltrace_matrix_axis_conf
85 - axis: *babeltrace_matrix_axis_build
86 - axis: &babeltrace_matrix_axis_cc
87 type: user-defined
88 name: cc
89 values: '{obj:ccs}'
90
91 - job-template: &babeltrace_builders_defaults
92 name: 'babeltrace_builders_defaults'
93 builders:
94 !j2-yaml: |
95 {% if buildtype is defined and buildtype == 'winbuild' %}
96 - conditional-step:
97 condition-kind: strings-match
98 on-evaluation-failure: run
99 condition-string1: {{ '${{platform}}' }}
100 condition-string2: 'cygwin64'
101 steps:
102 - shell:
103 !include-raw-escape:
104 - scripts/common/cygwin64-shebang
105 - scripts/common/cygpath-prefix
106 - scripts/common/print.sh
107 - scripts/babeltrace/build.sh
108 - conditional-step:
109 condition-kind: strings-match
110 on-evaluation-failure: run
111 condition-string1: {{ '${{platform}}' }}
112 condition-string2: 'msys2-ucrt64'
113 steps:
114 - inject:
115 properties-content: 'MSYSTEM=UCRT64'
116 - shell:
117 !include-raw-escape:
118 - scripts/common/msys2-shebang
119 - scripts/common/cygpath-prefix
120 - scripts/common/print.sh
121 - scripts/babeltrace/build.sh
122 {% else %}
123 - shell:
124 !include-raw-escape:
125 - scripts/common/print.sh
126 - scripts/babeltrace/build.sh
127 {% endif %}
128
129 # Use - in version number since yaml anchor do not support dot
130 - job-template: &babeltrace_builders_glib-2-28-6
131 name: 'babeltrace_builders_glib-2-28-6'
132 builders:
133 - inject:
134 properties-content: |
135 LD_LIBRARY_PATH=$WORKSPACE/glib-2.28.6/BUILD_RESULT/lib
136 PKG_CONFIG_PATH=$WORKSPACE/glib-2.28.6/BUILD_RESULT/lib/pkgconfig
137 platform=deb12-amd64
138 conf=std
139 build=std
140 - shell: |
141 curl -OL 'https://ftp.gnome.org/pub/gnome/sources/glib/2.28/glib-2.28.6.tar.gz'
142 tar xf glib-2.28.6.tar.gz
143 cd glib-2.28.6
144 sed -i 's/sys\/types\.h/sys\/sysmacros\.h/' gio/gdbusmessage.c # Fix build failure with recent glibc
145 mkdir BUILD_RESULT
146 ./configure --prefix=$WORKSPACE/glib-2.28.6/BUILD_RESULT
147 make -j `nproc` >/dev/null 2>&1 # Hide warnings
148 make install
149 - shell:
150 !include-raw-escape:
151 - scripts/common/print.sh
152 - scripts/babeltrace/build.sh
153
154 - job-template: &babeltrace_publishers_defaults
155 name: 'babeltrace_publishers_defaults'
156 publishers:
157 - tap: &babeltrace_publisher_tap_defaults
158 results: 'tap/**/*.log'
159 fail-if-no-results: true
160 failed-tests-mark-build-as-failure: true
161 include-comment-diagnostics: true
162 output-tap-to-console: false
163 todo-is-failure: false
164 - raw: &babeltrace_publisher_warnings-ng_defaults
165 xml: |
166 <io.jenkins.plugins.analysis.core.steps.IssuesRecorder plugin="warnings-ng">
167 <analysisTools>
168 <io.jenkins.plugins.analysis.warnings.Gcc4>
169 <id/>
170 <name/>
171 <jenkins plugin="plugin-util-api"/>
172 <pattern/>
173 <reportEncoding/>
174 <skipSymbolicLinks>false</skipSymbolicLinks>
175 </io.jenkins.plugins.analysis.warnings.Gcc4>
176 </analysisTools>
177 <sourceCodeEncoding/>
178 <sourceDirectory/>
179 <sourceDirectories/>
180 <ignoreQualityGate>false</ignoreQualityGate>
181 <ignoreFailedBuilds>true</ignoreFailedBuilds>
182 <failOnError>false</failOnError>
183 <healthy>0</healthy>
184 <unhealthy>0</unhealthy>
185 <minimumSeverity plugin="analysis-model-api">
186 <name>LOW</name>
187 </minimumSeverity>
188 <filters/>
189 <isEnabledForFailure>true</isEnabledForFailure>
190 <isAggregatingResults>true</isAggregatingResults>
191 <isBlameDisabled>false</isBlameDisabled>
192 <skipPublishingChecks>true</skipPublishingChecks>
193 <publishAllIssues>false</publishAllIssues>
194 <qualityGates>
195 <io.jenkins.plugins.analysis.core.util.QualityGate>
196 <threshold>1</threshold>
197 <type>TOTAL</type>
198 <status>WARNING</status>
199 </io.jenkins.plugins.analysis.core.util.QualityGate>
200 </qualityGates>
201 <trendChartType>AGGREGATION_TOOLS</trendChartType>
202 <scm/>
203 </io.jenkins.plugins.analysis.core.steps.IssuesRecorder>
204 - archive: &babeltrace_publisher_archive_defaults
205 artifacts: 'build/**,tap/**,log/**'
206 follow-symlinks: true
207 allow-empty: false
208 - workspace-cleanup: &babeltrace_publisher_workspace-cleanup_defaults
209 clean-if:
210 - failure: false
211 - ircbot: &babeltrace_publisher_ircbot_defaults
212 strategy: statechange-only
213 message-type: summary
214 matrix-notifier: only-parent
215 - email-ext: &babeltrace_publisher_email-ext_defaults
216 recipients: '{obj:email_to}'
217 reply-to: ci-notification@lists.lttng.org
218 always: false
219 unstable: false
220 first-failure: true
221 first-unstable: true
222 not-built: false
223 aborted: false
224 regression: false
225 failure: false
226 second-failure: false
227 improvement: false
228 still-failing: false
229 success: false
230 fixed: false
231 fixed-unhealthy: true
232 still-unstable: false
233 pre-build: false
234 matrix-trigger: only-parent
235 send-to:
236 - recipients
237
238 - job-template: &babeltrace_publishers_review
239 name: 'babeltrace_publishers_review'
240 publishers:
241 - tap: *babeltrace_publisher_tap_defaults
242 # Fail job on any compiler warnings
243 - raw:
244 xml: |
245 <io.jenkins.plugins.analysis.core.steps.IssuesRecorder plugin="warnings-ng">
246 <analysisTools>
247 <io.jenkins.plugins.analysis.warnings.Gcc4>
248 <id/>
249 <name/>
250 <jenkins plugin="plugin-util-api"/>
251 <pattern/>
252 <reportEncoding/>
253 <skipSymbolicLinks>false</skipSymbolicLinks>
254 </io.jenkins.plugins.analysis.warnings.Gcc4>
255 </analysisTools>
256 <sourceCodeEncoding/>
257 <sourceDirectory/>
258 <sourceDirectories/>
259 <ignoreQualityGate>false</ignoreQualityGate>
260 <ignoreFailedBuilds>true</ignoreFailedBuilds>
261 <failOnError>false</failOnError>
262 <healthy>0</healthy>
263 <unhealthy>0</unhealthy>
264 <minimumSeverity plugin="analysis-model-api">
265 <name>LOW</name>
266 </minimumSeverity>
267 <filters/>
268 <isEnabledForFailure>true</isEnabledForFailure>
269 <isAggregatingResults>true</isAggregatingResults>
270 <isBlameDisabled>false</isBlameDisabled>
271 <skipPublishingChecks>true</skipPublishingChecks>
272 <publishAllIssues>false</publishAllIssues>
273 <qualityGates>
274 <io.jenkins.plugins.analysis.core.util.QualityGate>
275 <threshold>1</threshold>
276 <type>TOTAL</type>
277 <status>{warnings_status}</status>
278 </io.jenkins.plugins.analysis.core.util.QualityGate>
279 </qualityGates>
280 <trendChartType>AGGREGATION_TOOLS</trendChartType>
281 <scm/>
282 </io.jenkins.plugins.analysis.core.steps.IssuesRecorder>
283 - archive: *babeltrace_publisher_archive_defaults
284 - workspace-cleanup: *babeltrace_publisher_workspace-cleanup_defaults
285
286
287 ## Job Templates
288
289 - job-template:
290 name: '{job_prefix}babeltrace_{version}_{buildtype}'
291 defaults: babeltrace
292
293 <<: *babeltrace_matrix_axes_defaults
294 <<: *babeltrace_builders_defaults
295 <<: *babeltrace_publishers_defaults
296
297 - job-template:
298 name: babeltrace_{version}_{cctype}
299 defaults: babeltrace
300
301 <<: *babeltrace_matrix_axes_cc
302 <<: *babeltrace_builders_defaults
303 <<: *babeltrace_publishers_defaults
304
305 - job-template:
306 name: 'dev_review_babeltrace_{version}_{buildtype}'
307 defaults: babeltrace
308 concurrent: true
309
310 scm:
311 - git: &babeltrace_scm_git_review
312 url: https://review.lttng.org/babeltrace
313 refspec: 'refs/changes/*:refs/changes/*'
314 branches:
315 - '$GERRIT_REFSPEC'
316 basedir: src/babeltrace
317 skip-tag: true
318
319 triggers:
320 - gerrit: &babeltrace_trigger_gerrit_defaults
321 trigger-on:
322 - comment-added-event:
323 approval-category: 'CI-Build'
324 approval-value: 1
325 projects:
326 - project-compare-type: 'PLAIN'
327 project-pattern: 'babeltrace'
328 branches:
329 - branch-compare-type: 'PLAIN'
330 branch-pattern: '{version}'
331
332 properties:
333 - inject:
334 properties-content: |
335 PROJECT_NAME=babeltrace
336 - build-discarder:
337 days-to-keep: 1
338 - throttle:
339 option: 'category'
340 categories:
341 - 'gerrit-{buildtype}'
342
343 <<: *babeltrace_matrix_axes_defaults
344 <<: *babeltrace_builders_defaults
345 <<: *babeltrace_publishers_review
346
347 - job-template:
348 name: 'dev_review_babeltrace_{version}_pylint'
349 defaults: babeltrace
350 concurrent: true
351
352 scm:
353 - git: *babeltrace_scm_git_review
354
355 triggers:
356 - gerrit: *babeltrace_trigger_gerrit_defaults
357
358 node: 'deb12-amd64'
359
360 builders:
361 - shell:
362 !include-raw-escape: scripts/babeltrace/pylint.sh
363
364 properties:
365 - inject:
366 properties-content: |
367 PROJECT_NAME=babeltrace
368 - build-discarder:
369 days-to-keep: 1
370
371 publishers:
372 - workspace-cleanup: *babeltrace_publisher_workspace-cleanup_defaults
373
374 - job-template:
375 name: 'dev_review_babeltrace_{version}_smokebuild'
376 defaults: babeltrace
377 concurrent: true
378
379 scm:
380 - git: *babeltrace_scm_git_review
381
382 triggers:
383 - gerrit: &babeltrace_trigger_gerrit_smoke
384 trigger-on:
385 - comment-added-event:
386 approval-category: 'Smoke-Build-Lvl1'
387 approval-value: 1
388 projects:
389 - project-compare-type: 'PLAIN'
390 project-pattern: 'babeltrace'
391 branches:
392 - branch-compare-type: 'PLAIN'
393 branch-pattern: '{version}'
394 skip-vote:
395 successful: true
396 failed: true
397 unstable: true
398 notbuilt: true
399 aborted: true
400
401 properties:
402 - inject:
403 properties-content: |
404 PROJECT_NAME=babeltrace
405 BABELTRACE_RUN_TESTS=no
406 - build-discarder:
407 days-to-keep: 1
408
409 <<: *babeltrace_matrix_axes_defaults
410 <<: *babeltrace_builders_defaults
411
412 publishers:
413 - workspace-cleanup: *babeltrace_publisher_workspace-cleanup_defaults
414
415 - job-template:
416 name: 'dev_review_babeltrace_{version}_check-format'
417 defaults: babeltrace
418 concurrent: true
419
420 scm:
421 - git: *babeltrace_scm_git_review
422
423 triggers:
424 - gerrit: *babeltrace_trigger_gerrit_smoke
425
426 node: 'deb12-amd64'
427
428 builders:
429 - shell:
430 !include-raw-escape: scripts/common/check-format.sh
431
432 properties:
433 - inject:
434 properties-content: |
435 PROJECT_NAME=babeltrace
436 - build-discarder:
437 days-to-keep: 1
438
439 publishers:
440 - archive:
441 artifacts: 'clang-format-fixes.diff'
442 allow-empty: true
443 - workspace-cleanup: *babeltrace_publisher_workspace-cleanup_defaults
444
445 - job-template:
446 name: babeltrace_{version}_release
447 defaults: babeltrace
448 node: 'deb12-amd64'
449
450 triggers:
451 - pollscm:
452 cron: "@daily"
453
454 scm:
455 - git:
456 <<: *babeltrace_scm_git_default
457 refspec: '+refs/tags/*:refs/remotes/origin/tags/*'
458 branches:
459 - '*/tags/{version}.*'
460
461 builders:
462 - shell:
463 !include-raw-escape: scripts/babeltrace/release.sh
464
465 publishers:
466 - tap: *babeltrace_publisher_tap_defaults
467 - raw: *babeltrace_publisher_warnings-ng_defaults
468 - workspace-cleanup: *babeltrace_publisher_workspace-cleanup_defaults
469 - archive:
470 artifacts: 'out/**,tap/**'
471 allow-empty: false
472 fingerprint: true
473 - ircbot: *babeltrace_publisher_ircbot_defaults
474
475 - job-template:
476 name: babeltrace_{version}_scan-build
477 defaults: babeltrace
478 node: 'deb12-amd64'
479
480 triggers:
481 - pollscm:
482 cron: "@daily"
483
484 builders:
485 - shell:
486 !include-raw-escape: scripts/common/scan-build.sh
487
488 publishers:
489 - workspace-cleanup: *babeltrace_publisher_workspace-cleanup_defaults
490 - html-publisher:
491 name: 'HTML Report'
492 dir: 'scan-build-archive/'
493 files: 'index.html'
494 - ircbot: *babeltrace_publisher_ircbot_defaults
495
496 - job-template:
497 name: babeltrace_{version}_coverity
498 defaults: babeltrace
499 node: 'deb12-amd64'
500
501 triggers:
502 - pollscm:
503 cron: "@daily"
504
505 wrappers:
506 - ansicolor: *babeltrace_wrapper_ansicolor_defaults
507 - timeout: *babeltrace_wrapper_timeout_defaults
508 - timestamps
509 - workspace-cleanup
510 - credentials-binding:
511 - username-password-separated:
512 credential-id: babeltrace_coverity_token
513 username: COVERITY_SCAN_PROJECT_NAME
514 password: COVERITY_SCAN_TOKEN
515
516 builders:
517 - shell:
518 !include-raw-escape: scripts/common/coverity.sh
519
520 publishers:
521 - workspace-cleanup: *babeltrace_publisher_workspace-cleanup_defaults
522 - archive:
523 artifacts: 'analysis-results.tgz,cov-int/**'
524 allow-empty: false
525 - ircbot: *babeltrace_publisher_ircbot_defaults
526
527 - job-template:
528 name: babeltrace_{version}_pylint
529 defaults: babeltrace
530 node: 'deb12-amd64'
531
532 triggers:
533 - pollscm:
534 cron: "@daily"
535
536 builders:
537 - shell:
538 !include-raw-escape: scripts/babeltrace/pylint.sh
539
540 publishers:
541 - workspace-cleanup: *babeltrace_publisher_workspace-cleanup_defaults
542 - archive:
543 artifacts: 'black.out,flake8.out,isort.out'
544 allow-empty: false
545 - ircbot: *babeltrace_publisher_ircbot_defaults
546 - email-ext: *babeltrace_publisher_email-ext_defaults
547
548 - job-template:
549 name: '{job_prefix}babeltrace_{version}_glib-2.28.6'
550 defaults: babeltrace
551 node: 'deb12-amd64'
552
553 <<: *babeltrace_builders_glib-2-28-6
554 <<: *babeltrace_publishers_defaults
555
556
557 ## Views
558 - view-template:
559 name: 'Babeltrace'
560 view-type: list
561 regex: 'babeltrace[-_].*'
562
563
564 ## Projects
565 - project:
566 name: babeltrace2
567 job_prefix: ''
568 github_user: efficios
569 github_name: babeltrace
570 email_to: 'ci-notification@lists.lttng.org, cc:jgalar@efficios.com'
571 version:
572 - stable-2.0
573 - master
574 jobs:
575 - '{job_prefix}babeltrace_{version}_{buildtype}':
576 buildtype: linuxbuild
577 platforms: !!python/tuple [deb12-amd64]
578 builds: !!python/tuple [std, oot, dist, oot-dist]
579 confs: !!python/tuple [std, static, prod, min, doc, asan]
580 filter: '(build=="std") || (conf=="std") || (conf=="doc")'
581 touchstone: '(build == "std") && (conf == "std")'
582 - '{job_prefix}babeltrace_{version}_{buildtype}':
583 buildtype: portbuild
584 platforms: !!python/tuple [deb12-armhf, deb12-arm64, deb12-ppc64el, deb12-i386]
585 builds: !!python/tuple [std]
586 confs: !!python/tuple [std, prod]
587 filter: ''
588 touchstone: '(build == "std") && (conf == "std") && (platform == "deb12-i386")'
589 - '{job_prefix}babeltrace_{version}_{buildtype}':
590 buildtype: slesbuild
591 platforms: !!python/tuple [sles12sp5-amd64, sles15sp4-amd64]
592 builds: !!python/tuple [std]
593 confs: !!python/tuple [std, prod]
594 filter: ''
595 touchstone: ''
596 - '{job_prefix}babeltrace_{version}_{buildtype}':
597 buildtype: elbuild
598 platforms: !!python/tuple [el7-amd64, el8-amd64, el9-amd64, el7-arm64, el8-arm64, el9-arm64]
599 builds: !!python/tuple [std]
600 confs: !!python/tuple [std, prod]
601 filter: ''
602 touchstone: ''
603 - '{job_prefix}babeltrace_{version}_{buildtype}':
604 buildtype: yoctobuild
605 platforms: !!python/tuple [yocto23-powerpcspe, yocto23-powerpc, yocto31-ppc64]
606 builds: !!python/tuple [std]
607 confs: !!python/tuple [std]
608 filter: ''
609 touchstone: ''
610 - '{job_prefix}babeltrace_{version}_{buildtype}':
611 buildtype: macosbuild
612 platforms: !!python/tuple [macos-arm64]
613 builds: !!python/tuple [std]
614 confs: !!python/tuple [std, prod]
615 filter: ''
616 touchstone: ''
617 - '{job_prefix}babeltrace_{version}_{buildtype}':
618 buildtype: freebsdbuild
619 platforms: !!python/tuple [freebsd-amd64]
620 builds: !!python/tuple [std]
621 confs: !!python/tuple [std, prod]
622 filter: ''
623 touchstone: ''
624 - '{job_prefix}babeltrace_{version}_{buildtype}':
625 buildtype: winbuild
626 platforms: !!python/tuple [cygwin64, msys2-ucrt64]
627 builds: !!python/tuple [std]
628 confs: !!python/tuple [std]
629 filter: ''
630 touchstone: ''
631 - 'babeltrace_{version}_{cctype}':
632 cctype: clangbuild
633 platforms: !!python/tuple [deb12-amd64]
634 builds: !!python/tuple [std]
635 confs: !!python/tuple [std, static, prod]
636 ccs: !!python/tuple [clang-13, clang-14, clang-15]
637 filter: ''
638 touchstone: ''
639 - 'babeltrace_{version}_release':
640 version: v2.0
641 - 'babeltrace_{version}_scan-build'
642 - 'babeltrace_{version}_pylint'
643 - 'babeltrace_{version}_coverity':
644 version: master
645 - '{job_prefix}babeltrace_{version}_glib-2.28.6':
646 version: master
647
648 - project:
649 name: review-babeltrace
650 job_prefix: ''
651 github_user: efficios
652 github_name: babeltrace
653 version:
654 - stable-2.0
655 - ctf2
656 - master
657 jobs:
658 ## Master ##
659 - 'dev_review_babeltrace_{version}_{buildtype}':
660 version: master
661 buildtype: linuxbuild
662 platforms: !!python/tuple [deb12-amd64]
663 builds: !!python/tuple [std, oot, dist, oot-dist]
664 confs: !!python/tuple [std, static, prod, min]
665 filter: ''
666 touchstone: ''
667 warnings_status: FAILED
668 - 'dev_review_babeltrace_{version}_{buildtype}':
669 version: master
670 buildtype: portbuild
671 platforms: !!python/tuple [deb12-armhf, deb12-arm64, deb12-ppc64el, deb12-i386]
672 builds: !!python/tuple [std]
673 confs: !!python/tuple [std]
674 filter: ''
675 touchstone: ''
676 warnings_status: FAILED
677 - 'dev_review_babeltrace_{version}_{buildtype}':
678 version: master
679 buildtype: macosbuild
680 platforms: !!python/tuple [macos-arm64]
681 builds: !!python/tuple [std]
682 confs: !!python/tuple [std, prod]
683 filter: ''
684 touchstone: ''
685 warnings_status: FAILED
686 - 'dev_review_babeltrace_{version}_{buildtype}':
687 version: master
688 buildtype: winbuild
689 platforms: !!python/tuple [cygwin64, msys2-ucrt64]
690 builds: !!python/tuple [std]
691 confs: !!python/tuple [std]
692 filter: ''
693 touchstone: ''
694 warnings_status: FAILED
695
696 ## ctf2 temp branch ##
697 - 'dev_review_babeltrace_{version}_{buildtype}':
698 version: ctf2
699 buildtype: linuxbuild
700 platforms: !!python/tuple [deb12-amd64]
701 builds: !!python/tuple [std, oot, dist, oot-dist]
702 confs: !!python/tuple [std, static, prod, min]
703 filter: ''
704 touchstone: ''
705 warnings_status: FAILED
706 - 'dev_review_babeltrace_{version}_{buildtype}':
707 version: ctf2
708 buildtype: portbuild
709 platforms: !!python/tuple [deb12-armhf, deb12-arm64, deb12-ppc64el, deb12-i386]
710 builds: !!python/tuple [std]
711 confs: !!python/tuple [std]
712 filter: ''
713 touchstone: ''
714 warnings_status: FAILED
715 - 'dev_review_babeltrace_{version}_{buildtype}':
716 version: ctf2
717 buildtype: macosbuild
718 platforms: !!python/tuple [macos-arm64]
719 builds: !!python/tuple [std]
720 confs: !!python/tuple [std, prod]
721 filter: ''
722 touchstone: ''
723 warnings_status: FAILED
724 - 'dev_review_babeltrace_{version}_{buildtype}':
725 version: ctf2
726 buildtype: winbuild
727 platforms: !!python/tuple [cygwin64, msys2-ucrt64]
728 builds: !!python/tuple [std]
729 confs: !!python/tuple [std]
730 filter: ''
731 touchstone: ''
732 warnings_status: FAILED
733
734 ## Stable 2.0 ##
735 - 'dev_review_babeltrace_{version}_{buildtype}':
736 version: stable-2.0
737 buildtype: linuxbuild
738 platforms: !!python/tuple [deb12-amd64]
739 builds: !!python/tuple [std, oot, dist, oot-dist]
740 confs: !!python/tuple [std, static, prod, min]
741 filter: ''
742 touchstone: ''
743 warnings_status: WARNING
744 - 'dev_review_babeltrace_{version}_{buildtype}':
745 version: stable-2.0
746 buildtype: portbuild
747 platforms: !!python/tuple [deb12-armhf, deb12-arm64, deb12-ppc64el, deb12-i386]
748 builds: !!python/tuple [std]
749 confs: !!python/tuple [std]
750 filter: ''
751 touchstone: ''
752 warnings_status: WARNING
753 - 'dev_review_babeltrace_{version}_{buildtype}':
754 version: stable-2.0
755 buildtype: macosbuild
756 platforms: !!python/tuple [macos-arm64]
757 builds: !!python/tuple [std]
758 confs: !!python/tuple [std, prod]
759 filter: ''
760 touchstone: ''
761 warnings_status: WARNING
762 - 'dev_review_babeltrace_{version}_{buildtype}':
763 version: stable-2.0
764 buildtype: winbuild
765 platforms: !!python/tuple [cygwin64, msys2-ucrt64]
766 builds: !!python/tuple [std]
767 confs: !!python/tuple [std]
768 filter: ''
769 touchstone: ''
770 warnings_status: WARNING
771
772 ## ALL ##
773 - 'dev_review_babeltrace_{version}_smokebuild':
774 platforms: !!python/tuple [deb12-amd64]
775 builds: !!python/tuple [oot-dist]
776 confs: !!python/tuple [std]
777 filter: ''
778 touchstone: ''
779 - 'dev_review_babeltrace_{version}_check-format'
780 - 'dev_review_babeltrace_{version}_pylint'
781
782
783 - project:
784 name: dev_upstream_babeltrace
785 job_prefix: dev_upstream_
786 github_user: efficios
787 github_name: babeltrace
788 email_to: 'ci-notification@lists.lttng.org, cc:jgalar@efficios.com'
789 version:
790 - stable-1.5
791 jobs:
792 - '{job_prefix}babeltrace_{version}_{buildtype}':
793 buildtype: linuxbuild
794 platforms: !!python/tuple [deb12-amd64]
795 builds: !!python/tuple [std, oot, dist, oot-dist]
796 confs: !!python/tuple [std, static, python-bindings]
797 filter: ''
798 touchstone: '(build == "std") && (conf == "std")'
799 - '{job_prefix}babeltrace_{version}_{buildtype}':
800 buildtype: portbuild
801 platforms: !!python/tuple [deb12-armhf, deb12-arm64, deb12-ppc64el, deb12-i386]
802 builds: !!python/tuple [std]
803 confs: !!python/tuple [std, python-bindings]
804 filter: ''
805 touchstone: '(build == "std") && (conf == "std") && (platform == "deb12-i386")'
806 - '{job_prefix}babeltrace_{version}_{buildtype}':
807 buildtype: slesbuild
808 platforms: !!python/tuple [sles12sp5-amd64, sles15sp4-amd64]
809 builds: !!python/tuple [std]
810 confs: !!python/tuple [std]
811 filter: ''
812 touchstone: ''
813 - '{job_prefix}babeltrace_{version}_{buildtype}':
814 buildtype: elbuild
815 platforms: !!python/tuple [el7-amd64, el8-amd64, el9-amd64]
816 builds: !!python/tuple [std]
817 confs: !!python/tuple [std]
818 filter: ''
819 touchstone: ''
820 - 'babeltrace_{version}_release':
821 version: v1.5
822
823
824 - project:
825 name: babeltrace-jgalar-staging
826 job_prefix: 'dev_jgalar_'
827 github_user: jgalar
828 github_name: babeltrace
829 email_to: "jgalar@efficios.com"
830 version:
831 - stable-1.5-staging
832 jobs:
833 - '{job_prefix}babeltrace_{version}_{buildtype}':
834 buildtype: linuxbuild
835 platforms: !!python/tuple [deb12-amd64]
836 builds: !!python/tuple [std, oot, dist, oot-dist]
837 confs: !!python/tuple [std, static, python-bindings]
838 filter: ''
839 touchstone: ''
840 - '{job_prefix}babeltrace_{version}_{buildtype}':
841 buildtype: macosbuild
842 platforms: !!python/tuple [macos-arm64]
843 builds: !!python/tuple [std]
844 confs: !!python/tuple [std]
845 filter: ''
846 touchstone: ''
847
848
849 - project:
850 name: babeltrace2-jgalar-staging
851 job_prefix: 'dev_jgalar_'
852 github_user: jgalar
853 github_name: babeltrace
854 email_to: "jgalar@efficios.com"
855 version:
856 - stable-2.0-staging
857 - master-staging
858 jobs:
859 - '{job_prefix}babeltrace_{version}_glib-2.28.6':
860 version:
861 - master-staging
862 - '{job_prefix}babeltrace_{version}_{buildtype}':
863 buildtype: linuxbuild
864 platforms: !!python/tuple [deb12-amd64]
865 builds: !!python/tuple [std, oot, dist, oot-dist]
866 confs: !!python/tuple [std, static, prod, min]
867 filter: ''
868 touchstone: ''
869 - '{job_prefix}babeltrace_{version}_{buildtype}':
870 buildtype: macosbuild
871 platforms: !!python/tuple [macos-arm64]
872 builds: !!python/tuple [std]
873 confs: !!python/tuple [std, prod]
874 filter: ''
875 touchstone: ''
876
877 - project:
878 name: babeltrace2-mjeanson
879 job_prefix: 'dev_mjeanson_'
880 github_user: efficios
881 github_name: babeltrace
882 email_to: "mjeanson@efficios.com"
883 version:
884 - master
885 jobs:
886 - '{job_prefix}babeltrace_{version}_{buildtype}':
887 buildtype: portbuild
888 platforms: !!python/tuple [sid-riscv64]
889 builds: !!python/tuple [std]
890 confs: !!python/tuple [std, prod]
891 filter: ''
892 touchstone: ''
893 - '{job_prefix}babeltrace_{version}_{buildtype}':
894 buildtype: build
895 platforms: !!python/tuple [deb12-amd64]
896 builds: !!python/tuple [std]
897 confs: !!python/tuple [std, prod]
898 filter: ''
899 touchstone: ''
900
901 - project:
902 name: babeltrace-views
903 views:
904 - Babeltrace
This page took 0.04628 seconds and 5 git commands to generate.