jjb: Remove duplicated warnings
[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:
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 - babeltrace_matrix_axes_defaults: &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 - babeltrace_matrix_axes_cc: &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 - babeltrace_builders_defaults: &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-mingw32'
113 steps:
114 - inject:
115 properties-content: 'MSYSTEM=MINGW32'
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 - conditional-step:
123 condition-kind: strings-match
124 on-evaluation-failure: run
125 condition-string1: {{ '${{platform}}' }}
126 condition-string2: 'msys2-mingw64'
127 steps:
128 - inject:
129 properties-content: 'MSYSTEM=MINGW64'
130 - shell:
131 !include-raw-escape:
132 - scripts/common/msys2-shebang
133 - scripts/common/cygpath-prefix
134 - scripts/common/print.sh
135 - scripts/babeltrace/build.sh
136 {% else %}
137 - shell:
138 !include-raw-escape:
139 - scripts/common/print.sh
140 - scripts/babeltrace/build.sh
141 {% endif %}
142
143 # Use - in version number since yaml anchor do not support dot
144 - babeltrace_builders_glib-2-28-6: &babeltrace_builders_glib-2-28-6
145 name: 'babeltrace_builders_glib-2-28-6'
146 builders:
147 - inject:
148 properties-content: |
149 LD_LIBRARY_PATH=$WORKSPACE/glib-2.28.6/BUILD_RESULT/lib
150 PKG_CONFIG_PATH=$WORKSPACE/glib-2.28.6/BUILD_RESULT/lib/pkgconfig
151 platform=bionic-amd64
152 conf=std
153 build=std
154 - shell: |
155 wget http://ftp.gnome.org/pub/gnome/sources/glib/2.28/glib-2.28.6.tar.gz
156 tar xvf glib-2.28.6.tar.gz
157 cd glib-2.28.6
158 mkdir BUILD_RESULT
159 ./configure --prefix=$WORKSPACE/glib-2.28.6/BUILD_RESULT
160 make -j `nproc` >/dev/null 2>&1 # Hide warnings
161 make install
162 - shell:
163 !include-raw-escape:
164 - scripts/common/print.sh
165 - scripts/babeltrace/build.sh
166
167 - babeltrace_publishers_defaults: &babeltrace_publishers_defaults
168 name: 'babeltrace_publishers_defaults'
169 publishers:
170 - tap: &babeltrace_publisher_tap_defaults
171 results: 'tap/**/*.log'
172 fail-if-no-results: true
173 failed-tests-mark-build-as-failure: true
174 todo-is-failure: false
175 - raw: &babeltrace_publisher_warnings-ng_defaults
176 xml: |
177 <io.jenkins.plugins.analysis.core.steps.IssuesRecorder plugin="warnings-ng">
178 <analysisTools>
179 <io.jenkins.plugins.analysis.warnings.Gcc4>
180 <id/>
181 <name/>
182 <jenkins plugin="plugin-util-api"/>
183 <pattern/>
184 <reportEncoding/>
185 <skipSymbolicLinks>false</skipSymbolicLinks>
186 </io.jenkins.plugins.analysis.warnings.Gcc4>
187 </analysisTools>
188 <sourceCodeEncoding/>
189 <sourceDirectory/>
190 <sourceDirectories/>
191 <ignoreQualityGate>false</ignoreQualityGate>
192 <ignoreFailedBuilds>true</ignoreFailedBuilds>
193 <failOnError>false</failOnError>
194 <healthy>0</healthy>
195 <unhealthy>0</unhealthy>
196 <minimumSeverity plugin="analysis-model-api">
197 <name>LOW</name>
198 </minimumSeverity>
199 <filters/>
200 <isEnabledForFailure>true</isEnabledForFailure>
201 <isAggregatingResults>true</isAggregatingResults>
202 <isBlameDisabled>false</isBlameDisabled>
203 <skipPublishingChecks>true</skipPublishingChecks>
204 <publishAllIssues>false</publishAllIssues>
205 <qualityGates>
206 <io.jenkins.plugins.analysis.core.util.QualityGate>
207 <threshold>1</threshold>
208 <type>TOTAL</type>
209 <status>WARNING</status>
210 </io.jenkins.plugins.analysis.core.util.QualityGate>
211 </qualityGates>
212 <trendChartType>AGGREGATION_TOOLS</trendChartType>
213 <scm/>
214 </io.jenkins.plugins.analysis.core.steps.IssuesRecorder>
215 - archive: &babeltrace_publisher_archive_defaults
216 artifacts: 'build/**,tap/**'
217 allow-empty: false
218 - workspace-cleanup: &babeltrace_publisher_workspace-cleanup_defaults
219 clean-if:
220 - failure: false
221 - email-ext: &babeltrace_publisher_email-ext_defaults
222 recipients: '{obj:email_to}'
223 reply-to: ci-notification@lists.lttng.org
224 always: false
225 unstable: false
226 first-failure: true
227 first-unstable: true
228 not-built: false
229 aborted: false
230 regression: false
231 failure: false
232 second-failure: false
233 improvement: false
234 still-failing: false
235 success: false
236 fixed: false
237 fixed-unhealthy: true
238 still-unstable: false
239 pre-build: false
240 matrix-trigger: only-parent
241 send-to:
242 - recipients
243
244 - babeltrace_publishers_gerrit: &babeltrace_publishers_gerrit
245 name: 'babeltrace_publishers_gerrit'
246 publishers:
247 - tap: *babeltrace_publisher_tap_defaults
248 # Fail job on any compiler warnings
249 - raw:
250 xml: |
251 <io.jenkins.plugins.analysis.core.steps.IssuesRecorder plugin="warnings-ng">
252 <analysisTools>
253 <io.jenkins.plugins.analysis.warnings.Gcc4>
254 <id/>
255 <name/>
256 <jenkins plugin="plugin-util-api"/>
257 <pattern/>
258 <reportEncoding/>
259 <skipSymbolicLinks>false</skipSymbolicLinks>
260 </io.jenkins.plugins.analysis.warnings.Gcc4>
261 </analysisTools>
262 <sourceCodeEncoding/>
263 <sourceDirectory/>
264 <sourceDirectories/>
265 <ignoreQualityGate>false</ignoreQualityGate>
266 <ignoreFailedBuilds>true</ignoreFailedBuilds>
267 <failOnError>false</failOnError>
268 <healthy>0</healthy>
269 <unhealthy>0</unhealthy>
270 <minimumSeverity plugin="analysis-model-api">
271 <name>LOW</name>
272 </minimumSeverity>
273 <filters/>
274 <isEnabledForFailure>true</isEnabledForFailure>
275 <isAggregatingResults>true</isAggregatingResults>
276 <isBlameDisabled>false</isBlameDisabled>
277 <skipPublishingChecks>true</skipPublishingChecks>
278 <publishAllIssues>false</publishAllIssues>
279 <qualityGates>
280 <io.jenkins.plugins.analysis.core.util.QualityGate>
281 <threshold>1</threshold>
282 <type>TOTAL</type>
283 <status>FAILED</status>
284 </io.jenkins.plugins.analysis.core.util.QualityGate>
285 </qualityGates>
286 <trendChartType>AGGREGATION_TOOLS</trendChartType>
287 <scm/>
288 </io.jenkins.plugins.analysis.core.steps.IssuesRecorder>
289 - archive: *babeltrace_publisher_archive_defaults
290 - workspace-cleanup: *babeltrace_publisher_workspace-cleanup_defaults
291
292
293 ## Job Templates
294
295 - job-template:
296 name: '{job_prefix}babeltrace_{version}_{buildtype}'
297 defaults: babeltrace
298
299 <<: *babeltrace_matrix_axes_defaults
300 <<: *babeltrace_builders_defaults
301 <<: *babeltrace_publishers_defaults
302
303 - job-template:
304 name: babeltrace_{version}_{cctype}
305 defaults: babeltrace
306
307 <<: *babeltrace_matrix_axes_cc
308 <<: *babeltrace_builders_defaults
309 <<: *babeltrace_publishers_defaults
310
311 - job-template:
312 name: dev_gerrit_babeltrace_{buildtype}
313 defaults: babeltrace
314 concurrent: true
315
316 scm:
317 - git:
318 url: https://review.lttng.org/babeltrace
319 refspec: 'refs/changes/*:refs/changes/*'
320 branches:
321 - '$GERRIT_REFSPEC'
322 basedir: src/babeltrace
323 skip-tag: true
324
325 triggers:
326 - gerrit:
327 trigger-on:
328 - comment-added-event:
329 approval-category: 'CI-Build'
330 approval-value: 1
331 projects:
332 - project-compare-type: 'PLAIN'
333 project-pattern: 'babeltrace'
334 branches:
335 - branch-compare-type: 'ANT'
336 branch-pattern: '**'
337
338 properties:
339 - inject:
340 properties-content: |
341 PROJECT_NAME=babeltrace
342 - build-discarder:
343 days-to-keep: 1
344 - throttle:
345 option: 'category'
346 categories:
347 - 'gerrit-{buildtype}'
348
349 <<: *babeltrace_matrix_axes_defaults
350 <<: *babeltrace_builders_defaults
351 <<: *babeltrace_publishers_gerrit
352
353 - job-template:
354 name: babeltrace_{version}_release
355 defaults: babeltrace
356 node: 'bionic-amd64'
357
358 triggers:
359 - pollscm:
360 cron: "@daily"
361
362 scm:
363 - git:
364 url: https://github.com/{github_user}/{github_name}.git
365 browser: githubweb
366 browser-url: https://github.com/{github_user}/{github_name}
367 refspec: '+refs/tags/*:refs/remotes/origin/tags/*'
368 branches:
369 - '*/tags/{version}.*'
370 basedir: src/babeltrace
371
372 builders:
373 - shell:
374 !include-raw-escape: scripts/babeltrace/release.sh
375
376 publishers:
377 - tap: *babeltrace_publisher_tap_defaults
378 - raw: *babeltrace_publisher_warnings-ng_defaults
379 - workspace-cleanup: *babeltrace_publisher_workspace-cleanup_defaults
380 - archive:
381 artifacts: 'out/**,tap/**'
382 allow-empty: false
383 fingerprint: true
384
385 - job-template:
386 name: dev_gerrit_babeltrace_pylint
387 defaults: babeltrace
388 concurrent: true
389
390 scm:
391 - git:
392 url: https://review.lttng.org/babeltrace
393 refspec: 'refs/changes/*:refs/changes/*'
394 branches:
395 - '$GERRIT_REFSPEC'
396 basedir: src/babeltrace
397 skip-tag: true
398
399 triggers:
400 - gerrit:
401 trigger-on:
402 - comment-added-event:
403 approval-category: 'CI-Build'
404 approval-value: 1
405 projects:
406 - project-compare-type: 'PLAIN'
407 project-pattern: 'babeltrace'
408 branches:
409 - branch-compare-type: 'ANT'
410 branch-pattern: '**'
411
412 node: 'bionic-amd64'
413
414 builders:
415 - shell:
416 !include-raw-escape: scripts/babeltrace/pylint.sh
417
418 properties:
419 - inject:
420 properties-content: |
421 PROJECT_NAME=babeltrace
422 - build-discarder:
423 days-to-keep: 1
424
425 - job-template:
426 name: babeltrace_{version}_scan-build
427 defaults: babeltrace
428 node: 'bionic-amd64'
429
430 triggers:
431 - pollscm:
432 cron: "@daily"
433
434 builders:
435 - shell:
436 !include-raw-escape: scripts/common/scan-build.sh
437
438 publishers:
439 - workspace-cleanup: *babeltrace_publisher_workspace-cleanup_defaults
440 - html-publisher:
441 name: 'HTML Report'
442 dir: 'scan-build-archive/'
443 files: 'index.html'
444
445 - job-template:
446 name: babeltrace_{version}_coverity
447 defaults: babeltrace
448 node: 'bionic-amd64'
449
450 triggers:
451 - pollscm:
452 cron: "@daily"
453
454 wrappers:
455 - ansicolor: *babeltrace_wrapper_ansicolor_defaults
456 - timeout: *babeltrace_wrapper_timeout_defaults
457 - timestamps
458 - workspace-cleanup
459 - credentials-binding:
460 - username-password-separated:
461 credential-id: babeltrace_coverity_token
462 username: COVERITY_SCAN_PROJECT_NAME
463 password: COVERITY_SCAN_TOKEN
464
465 builders:
466 - shell:
467 !include-raw-escape: scripts/common/coverity.sh
468
469 publishers:
470 - workspace-cleanup: *babeltrace_publisher_workspace-cleanup_defaults
471 - archive:
472 artifacts: 'analysis-results.tgz,cov-int/**'
473 allow-empty: false
474
475 - job-template:
476 name: babeltrace_{version}_pylint
477 defaults: babeltrace
478 node: 'bionic-amd64'
479
480 triggers:
481 - pollscm:
482 cron: "@daily"
483
484 builders:
485 - shell:
486 !include-raw-escape: scripts/babeltrace/pylint.sh
487
488 publishers:
489 - workspace-cleanup: *babeltrace_publisher_workspace-cleanup_defaults
490 - archive:
491 artifacts: 'black.out,flake8.out'
492 allow-empty: false
493 - email-ext: *babeltrace_publisher_email-ext_defaults
494
495 - job-template:
496 name: '{job_prefix}babeltrace_{version}_glib-2.28.6'
497 defaults: babeltrace
498 node: 'bionic-amd64'
499
500 <<: *babeltrace_builders_glib-2-28-6
501 <<: *babeltrace_publishers_defaults
502
503
504 ## Views
505 - view-template:
506 name: 'Babeltrace'
507 view-type: list
508 regex: 'babeltrace[-_].*'
509
510
511 ## Projects
512 - project:
513 name: babeltrace2
514 job_prefix: ''
515 github_user: efficios
516 github_name: babeltrace
517 email_to: 'ci-notification@lists.lttng.org, cc:jgalar@efficios.com'
518 version:
519 - stable-2.0
520 - master
521 jobs:
522 - '{job_prefix}babeltrace_{version}_{buildtype}':
523 buildtype: linuxbuild
524 platforms: !!python/tuple [jammy-amd64]
525 builds: !!python/tuple [std, oot, dist, oot-dist]
526 confs: !!python/tuple [std, static, prod, min, doc]
527 filter: ''
528 touchstone: '(build == "std") && (conf == "std")'
529 - '{job_prefix}babeltrace_{version}_{buildtype}':
530 buildtype: build
531 platforms: !!python/tuple [bionic-amd64]
532 builds: !!python/tuple [std, oot, dist, oot-dist]
533 confs: !!python/tuple [std, static, prod, min, doc]
534 filter: ''
535 touchstone: '(build == "std") && (conf == "std")'
536 - '{job_prefix}babeltrace_{version}_{buildtype}':
537 buildtype: portbuild
538 platforms: !!python/tuple [deb11-armhf, deb11-arm64, sid-powerpc, deb11-ppc64el, deb11-i386]
539 builds: !!python/tuple [std]
540 confs: !!python/tuple [std, prod]
541 filter: ''
542 touchstone: '(build == "std") && (conf == "std") && (platform == "deb11-i386")'
543 - '{job_prefix}babeltrace_{version}_{buildtype}':
544 buildtype: slesbuild
545 platforms: !!python/tuple [sles12sp5-amd64]
546 builds: !!python/tuple [std]
547 confs: !!python/tuple [std, prod]
548 filter: ''
549 touchstone: ''
550 - '{job_prefix}babeltrace_{version}_{buildtype}':
551 buildtype: elbuild
552 platforms: !!python/tuple [el7-amd64, el8-amd64, el9-amd64]
553 builds: !!python/tuple [std]
554 confs: !!python/tuple [std, prod]
555 filter: ''
556 touchstone: ''
557 - '{job_prefix}babeltrace_{version}_{buildtype}':
558 buildtype: macosbuild
559 platforms: !!python/tuple [macos-amd64, macos-arm64]
560 builds: !!python/tuple [std]
561 confs: !!python/tuple [std, prod]
562 filter: ''
563 touchstone: ''
564 - '{job_prefix}babeltrace_{version}_{buildtype}':
565 buildtype: freebsdbuild
566 platforms: !!python/tuple [freebsd-amd64]
567 builds: !!python/tuple [std]
568 confs: !!python/tuple [std, prod]
569 filter: ''
570 touchstone: ''
571 - '{job_prefix}babeltrace_{version}_{buildtype}':
572 buildtype: winbuild
573 platforms: !!python/tuple [cygwin64, msys2-mingw32, msys2-mingw64]
574 builds: !!python/tuple [std]
575 confs: !!python/tuple [std]
576 filter: ''
577 touchstone: ''
578 - 'babeltrace_{version}_{cctype}':
579 cctype: clangbuild
580 platforms: !!python/tuple [bionic-amd64]
581 builds: !!python/tuple [std]
582 confs: !!python/tuple [std, static, prod]
583 ccs: !!python/tuple [clang-3.9, clang-4.0, clang-6.0, clang-7]
584 filter: ''
585 touchstone: ''
586 - 'babeltrace_{version}_release':
587 version: v2.0
588 - 'babeltrace_{version}_scan-build'
589 - 'babeltrace_{version}_pylint'
590 - 'babeltrace_{version}_coverity':
591 version: master
592 - '{job_prefix}babeltrace_{version}_glib-2.28.6':
593 version: master
594
595 - project:
596 name: gerrit-babeltrace
597 job_prefix: ''
598 github_user: efficios
599 github_name: babeltrace
600 jobs:
601 - 'dev_gerrit_babeltrace_{buildtype}':
602 buildtype: build
603 platforms: !!python/tuple [bionic-amd64, deb11-armhf, deb11-arm64, sid-powerpc, deb11-ppc64el, deb11-i386]
604 builds: !!python/tuple [std, oot, dist, oot-dist]
605 confs: !!python/tuple [std, static, prod, min]
606 filter: '(build=="std" && conf=="std") || (platform=="bionic-amd64")'
607 touchstone: ''
608 - 'dev_gerrit_babeltrace_{buildtype}':
609 buildtype: macosbuild
610 platforms: !!python/tuple [macos-amd64, macos-arm64]
611 builds: !!python/tuple [std]
612 confs: !!python/tuple [std, prod]
613 filter: ''
614 touchstone: ''
615 - 'dev_gerrit_babeltrace_{buildtype}':
616 buildtype: winbuild
617 platforms: !!python/tuple [cygwin64, msys2-mingw64]
618 builds: !!python/tuple [std]
619 confs: !!python/tuple [std]
620 filter: ''
621 touchstone: ''
622 - 'dev_gerrit_babeltrace_pylint'
623
624
625 - project:
626 name: dev_upstream_babeltrace
627 job_prefix: dev_upstream_
628 github_user: efficios
629 github_name: babeltrace
630 email_to: 'ci-notification@lists.lttng.org, cc:jgalar@efficios.com'
631 version:
632 - stable-1.5
633 jobs:
634 - '{job_prefix}babeltrace_{version}_{buildtype}':
635 buildtype: linuxbuild
636 platforms: !!python/tuple [jammy-amd64]
637 builds: !!python/tuple [std, oot, dist, oot-dist]
638 confs: !!python/tuple [std, static, python-bindings]
639 filter: ''
640 touchstone: '(build == "std") && (conf == "std")'
641 - '{job_prefix}babeltrace_{version}_{buildtype}':
642 buildtype: portbuild
643 platforms: !!python/tuple [deb11-armhf, deb11-arm64, sid-powerpc, deb11-ppc64el, deb11-i386]
644 builds: !!python/tuple [std]
645 confs: !!python/tuple [std, python-bindings]
646 filter: ''
647 touchstone: '(build == "std") && (conf == "std") && (platform == "deb11-i386")'
648 - '{job_prefix}babeltrace_{version}_{buildtype}':
649 buildtype: slesbuild
650 platforms: !!python/tuple [sles12sp5-amd64]
651 builds: !!python/tuple [std]
652 confs: !!python/tuple [std]
653 filter: ''
654 touchstone: ''
655 - '{job_prefix}babeltrace_{version}_{buildtype}':
656 buildtype: elbuild
657 platforms: !!python/tuple [el7-amd64, el8-amd64, el9-amd64]
658 builds: !!python/tuple [std]
659 confs: !!python/tuple [std]
660 filter: ''
661 touchstone: ''
662 - 'babeltrace_{version}_release':
663 version: v1.5
664
665
666 - project:
667 name: babeltrace-jgalar-staging
668 job_prefix: 'dev_jgalar_'
669 github_user: jgalar
670 github_name: babeltrace
671 email_to: "jgalar@efficios.com"
672 version:
673 - stable-1.5-staging
674 jobs:
675 - '{job_prefix}babeltrace_{version}_{buildtype}':
676 buildtype: build
677 platforms: !!python/tuple [bionic-amd64]
678 builds: !!python/tuple [std, oot, dist, oot-dist]
679 confs: !!python/tuple [std, static, python-bindings]
680 filter: ''
681 touchstone: ''
682 - '{job_prefix}babeltrace_{version}_{buildtype}':
683 buildtype: macosbuild
684 platforms: !!python/tuple [macos-amd64, macos-arm64]
685 builds: !!python/tuple [std]
686 confs: !!python/tuple [std]
687 filter: ''
688 touchstone: ''
689
690
691 - project:
692 name: babeltrace2-jgalar-staging
693 job_prefix: 'dev_jgalar_'
694 github_user: jgalar
695 github_name: babeltrace
696 email_to: "jgalar@efficios.com"
697 version:
698 - stable-2.0-staging
699 - master-staging
700 jobs:
701 - '{job_prefix}babeltrace_{version}_glib-2.28.6':
702 version:
703 - master-staging
704 - '{job_prefix}babeltrace_{version}_{buildtype}':
705 buildtype: build
706 platforms: !!python/tuple [bionic-amd64]
707 builds: !!python/tuple [std, oot, dist, oot-dist]
708 confs: !!python/tuple [std, static, prod, min]
709 filter: ''
710 touchstone: ''
711 - '{job_prefix}babeltrace_{version}_{buildtype}':
712 buildtype: macosbuild
713 platforms: !!python/tuple [macos-amd64, macos-arm64]
714 builds: !!python/tuple [std]
715 confs: !!python/tuple [std, prod]
716 filter: ''
717 touchstone: ''
718
719 - project:
720 name: babeltrace-views
721 views:
722 - Babeltrace
This page took 0.044483 seconds and 5 git commands to generate.