jjb: babeltrace: Add release jobs
[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
19 - timeout:
20 timeout: 20
21 fail: true
22 type: no-activity
23 - timestamps
24 - workspace-cleanup:
25 clean-if:
26 - failure: false
27
28 scm:
29 - git:
30 url: git://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: 2
48 - github:
49 url: https://github.com/{github_user}/{github_name}
50
51
52 ## Anchors
53 - babeltrace_build_axes_defaults: &babeltrace_build_axes_defaults
54 name: 'babeltrace_build_axes_defaults'
55 project-type: matrix
56 node: 'master' # Applies only to matrix flyweight task
57 axes:
58 - axis:
59 type: slave
60 name: arch
61 values: '{obj:arch}'
62 - axis:
63 type: user-defined
64 name: conf
65 values: '{obj:conf}'
66 - axis:
67 type: user-defined
68 name: build
69 values: '{obj:build}'
70
71 - babeltrace_build_axes_cc: &babeltrace_build_axes_cc
72 name: 'babeltrace_build_axes_cc'
73 project-type: matrix
74 node: 'master' # Applies only to matrix flyweight task
75 axes:
76 - axis:
77 type: slave
78 name: arch
79 values: '{obj:arch}'
80 - axis:
81 type: user-defined
82 name: conf
83 values: '{obj:conf}'
84 - axis:
85 type: user-defined
86 name: build
87 values: '{obj:build}'
88 - axis:
89 type: user-defined
90 name: cc
91 values: '{obj:cc}'
92
93 - babeltrace_build_builders_defaults: &babeltrace_build_builders_defaults
94 name: 'babeltrace_build_builders_defaults'
95 builders:
96 - shell:
97 !include-raw-escape: scripts/babeltrace/build.sh
98
99 - babeltrace_build_builders_win: &babeltrace_build_builders_win
100 name: 'babeltrace_build_builders_win'
101 builders:
102 - conditional-step:
103 condition-kind: strings-match
104 on-evaluation-failure: run
105 condition-string1: '${{arch}}'
106 condition-string2: 'cygwin64'
107 steps:
108 - shell:
109 !include-raw-escape:
110 - scripts/common/cygwin64-shebang
111 - scripts/common/cygpath-prefix
112 - scripts/babeltrace/build.sh
113 - conditional-step:
114 condition-kind: strings-match
115 on-evaluation-failure: run
116 condition-string1: '${{arch}}'
117 condition-string2: 'msys2-mingw32'
118 steps:
119 - inject:
120 properties-content: 'MSYSTEM=MINGW32'
121 - shell:
122 !include-raw-escape:
123 - scripts/common/msys2-shebang
124 - scripts/common/cygpath-prefix
125 - scripts/babeltrace/build.sh
126 - conditional-step:
127 condition-kind: strings-match
128 on-evaluation-failure: run
129 condition-string1: '${{arch}}'
130 condition-string2: 'msys2-mingw64'
131 steps:
132 - inject:
133 properties-content: 'MSYSTEM=MINGW64'
134 - shell:
135 !include-raw-escape:
136 - scripts/common/msys2-shebang
137 - scripts/common/cygpath-prefix
138 - scripts/babeltrace/build.sh
139
140
141 - babeltrace_build_publishers_dev: &babeltrace_build_publishers_dev
142 name: 'babeltrace_build_publishers_dev'
143 publishers:
144 - tap:
145 results: 'tap/**/*.log'
146 fail-if-no-results: true
147 failed-tests-mark-build-as-failure: true
148 todo-is-failure: false
149 - warnings:
150 console-log-parsers:
151 - 'GNU Make + GNU C Compiler (gcc)'
152 total-thresholds:
153 unstable:
154 total-all: 0
155 total-high: 0
156 total-normal: 0
157 total-low: 0
158 - archive:
159 artifacts: 'tap/**'
160 allow-empty: false
161 - email-ext:
162 recipients: '{obj:email_to}'
163 always: false
164 unstable: false
165 first-failure: true
166 first-unstable: true
167 not-built: false
168 aborted: false
169 regression: false
170 failure: false
171 second-failure: false
172 improvement: false
173 still-failing: false
174 success: false
175 fixed: false
176 fixed-unhealthy: true
177 still-unstable: false
178 pre-build: false
179 matrix-trigger: only-parent
180 send-to:
181 - recipients
182
183
184 - babeltrace_build_publishers_prod: &babeltrace_build_publishers_prod
185 name: 'babeltrace_build_publishers_prod'
186 publishers:
187 - tap:
188 results: 'tap/**/*.log'
189 fail-if-no-results: true
190 failed-tests-mark-build-as-failure: true
191 todo-is-failure: false
192 - warnings:
193 console-log-parsers:
194 - 'GNU Make + GNU C Compiler (gcc)'
195 total-thresholds:
196 unstable:
197 total-all: 0
198 total-high: 0
199 total-normal: 0
200 total-low: 0
201 - archive:
202 artifacts: 'build/**,tap/**'
203 allow-empty: false
204 - email-ext:
205 recipients: '{obj:email_to}'
206 reply-to: ci-notification@lists.lttng.org
207 always: false
208 unstable: false
209 first-failure: true
210 first-unstable: true
211 not-built: false
212 aborted: false
213 regression: false
214 failure: false
215 second-failure: false
216 improvement: false
217 still-failing: false
218 success: false
219 fixed: false
220 fixed-unhealthy: true
221 still-unstable: false
222 pre-build: false
223 matrix-trigger: only-parent
224 send-to:
225 - recipients
226
227 - babeltrace_build_publishers_gerrit: &babeltrace_build_publishers_gerrit
228 name: 'babeltrace_build_publishers_gerrit'
229 publishers:
230 - tap:
231 results: 'tap/**/*.log'
232 fail-if-no-results: true
233 failed-tests-mark-build-as-failure: true
234 todo-is-failure: false
235 - warnings:
236 console-log-parsers:
237 - 'GNU Make + GNU C Compiler (gcc)'
238 total-thresholds:
239 failed:
240 total-all: 0
241 total-high: 0
242 total-normal: 0
243 total-low: 0
244 - archive:
245 artifacts: 'build/**,tap/**'
246 allow-empty: false
247
248
249 ## Templates
250
251 - job-template:
252 name: babeltrace_{version}_{buildtype}
253 defaults: babeltrace
254
255 <<: *babeltrace_build_axes_defaults
256 <<: *babeltrace_build_builders_defaults
257 <<: *babeltrace_build_publishers_prod
258
259 - job-template:
260 name: babeltrace_{version}_{cctype}
261 defaults: babeltrace
262
263 <<: *babeltrace_build_axes_cc
264 <<: *babeltrace_build_builders_defaults
265 <<: *babeltrace_build_publishers_prod
266
267 - job-template:
268 name: babeltrace_{version}_winbuild
269 defaults: babeltrace
270
271 <<: *babeltrace_build_axes_defaults
272 <<: *babeltrace_build_builders_win
273 <<: *babeltrace_build_publishers_prod
274
275 - job-template:
276 name: dev_{user}_babeltrace_{version}_{buildtype}
277 defaults: babeltrace
278
279 <<: *babeltrace_build_axes_defaults
280 <<: *babeltrace_build_builders_defaults
281 <<: *babeltrace_build_publishers_dev
282
283 - job-template:
284 name: dev_gerrit_babeltrace_{buildtype}
285 defaults: babeltrace
286 concurrent: true
287
288 scm:
289 - git:
290 url: https://review.lttng.org/babeltrace
291 refspec: 'refs/changes/*:refs/changes/*'
292 branches:
293 - '$GERRIT_REFSPEC'
294 basedir: src/babeltrace
295 skip-tag: true
296
297 triggers:
298 - gerrit:
299 trigger-on:
300 - comment-added-event:
301 approval-category: 'CI-Build'
302 approval-value: 1
303 projects:
304 - project-compare-type: 'PLAIN'
305 project-pattern: 'babeltrace'
306 branches:
307 - branch-compare-type: 'ANT'
308 branch-pattern: '**'
309 trigger-for-unreviewed-patches: true
310
311 project-type: matrix
312 node: 'master' # Applies only to matrix flyweight task
313 execution-strategy:
314 combination-filter: |
315 {filter}
316 axes:
317 - axis:
318 type: slave
319 name: arch
320 values: '{obj:arch}'
321 - axis:
322 type: user-defined
323 name: conf
324 values: '{obj:conf}'
325 - axis:
326 type: user-defined
327 name: build
328 values: '{obj:build}'
329
330 <<: *babeltrace_build_builders_defaults
331 <<: *babeltrace_build_publishers_gerrit
332
333 properties:
334 - inject:
335 properties-content: |
336 PROJECT_NAME=babeltrace
337 - build-discarder:
338 days-to-keep: 1
339 - throttle:
340 option: 'category'
341 categories:
342 - 'gerrit-{buildtype}'
343
344 - job-template:
345 name: dev_gerrit_babeltrace_winbuild
346 defaults: babeltrace
347 concurrent: true
348
349 scm:
350 - git:
351 url: https://review.lttng.org/babeltrace
352 refspec: 'refs/changes/*:refs/changes/*'
353 branches:
354 - '$GERRIT_REFSPEC'
355 basedir: src/babeltrace
356 skip-tag: true
357
358 triggers:
359 - gerrit:
360 trigger-on:
361 - comment-added-event:
362 approval-category: 'CI-Build'
363 approval-value: 1
364 projects:
365 - project-compare-type: 'PLAIN'
366 project-pattern: 'babeltrace'
367 branches:
368 - branch-compare-type: 'ANT'
369 branch-pattern: '**'
370 trigger-for-unreviewed-patches: true
371
372 properties:
373 - inject:
374 properties-content: |
375 PROJECT_NAME=babeltrace
376 - build-discarder:
377 days-to-keep: 1
378 - throttle:
379 option: 'category'
380 categories:
381 - 'gerrit-winbuild'
382
383 <<: *babeltrace_build_axes_defaults
384 <<: *babeltrace_build_builders_win
385 <<: *babeltrace_build_publishers_gerrit
386
387 - job-template:
388 name: babeltrace_{version}_release
389 defaults: babeltrace
390 node: 'amd64'
391
392 triggers:
393 - pollscm:
394 cron: "@daily"
395
396 scm:
397 - git:
398 url: git://github.com/{github_user}/{github_name}.git
399 browser: githubweb
400 browser-url: https://github.com/{github_user}/{github_name}
401 refspec: '+refs/tags/*:refs/remotes/origin/tags/*'
402 branches:
403 - '*/tags/{version}.*'
404 basedir: src/babeltrace
405
406 builders:
407 - shell:
408 !include-raw-escape: scripts/babeltrace/release.sh
409
410 publishers:
411 - tap:
412 results: 'tap/**/*.log'
413 fail-if-no-results: true
414 failed-tests-mark-build-as-failure: true
415 todo-is-failure: false
416 - warnings:
417 console-log-parsers:
418 - 'GNU Make + GNU C Compiler (gcc)'
419 total-thresholds:
420 unstable:
421 total-all: 0
422 total-high: 0
423 total-normal: 0
424 total-low: 0
425 - workspace-cleanup:
426 clean-if:
427 - failure: false
428 - archive:
429 artifacts: 'out/**,tap/**'
430 allow-empty: false
431
432 - job-template:
433 name: dev_gerrit_babeltrace_pylint
434 defaults: babeltrace
435 concurrent: true
436
437 scm:
438 - git:
439 url: https://review.lttng.org/babeltrace
440 refspec: 'refs/changes/*:refs/changes/*'
441 branches:
442 - '$GERRIT_REFSPEC'
443 basedir: src/babeltrace
444 skip-tag: true
445
446 triggers:
447 - gerrit:
448 trigger-on:
449 - comment-added-event:
450 approval-category: 'CI-Build'
451 approval-value: 1
452 projects:
453 - project-compare-type: 'PLAIN'
454 project-pattern: 'babeltrace'
455 branches:
456 - branch-compare-type: 'ANT'
457 branch-pattern: '**'
458 trigger-for-unreviewed-patches: true
459
460 node: 'amd64'
461
462 builders:
463 - shell:
464 !include-raw-escape: scripts/babeltrace/pylint.sh
465
466 properties:
467 - inject:
468 properties-content: |
469 PROJECT_NAME=babeltrace
470 - build-discarder:
471 days-to-keep: 1
472
473 - job-template:
474 name: babeltrace_{version}_cppcheck
475 defaults: babeltrace
476
477 triggers:
478 - pollscm:
479 cron: "@daily"
480
481 builders:
482 - shell: |
483 rm -f cppcheck-result.xml
484 cppcheck --enable=all --xml --xml-version=2 $WORKSPACE/src/babeltrace 2> cppcheck-result.xml
485
486 publishers:
487 - archive:
488 artifacts: 'cppcheck-result.xml'
489 allow-empty: false
490 - cppcheck:
491 pattern: 'cppcheck-result.xml'
492
493 - job-template:
494 name: babeltrace_{version}_scan-build
495 defaults: babeltrace
496 node: 'amd64'
497
498 triggers:
499 - pollscm:
500 cron: "@daily"
501
502 builders:
503 - shell:
504 !include-raw-escape: scripts/common/scan-build.sh
505
506 publishers:
507 - html-publisher:
508 name: 'HTML Report'
509 dir: 'scan-build-archive/'
510 files: 'index.html'
511
512 - job-template:
513 name: babeltrace_{version}_coverity
514 defaults: babeltrace
515 node: 'amd64'
516
517 triggers:
518 - pollscm:
519 cron: "@daily"
520
521 wrappers:
522 - workspace-cleanup
523 - timestamps
524 - ansicolor:
525 colormap: xterm
526 - credentials-binding:
527 - username-password-separated:
528 credential-id: babeltrace_coverity_token
529 username: COVERITY_SCAN_PROJECT_NAME
530 password: COVERITY_SCAN_TOKEN
531 builders:
532 - shell:
533 !include-raw-escape: scripts/common/coverity.sh
534
535 publishers:
536 - workspace-cleanup
537 - archive:
538 artifacts: 'analysis-results.tgz,cov-int/**'
539 allow-empty: false
540
541 - job-template:
542 name: babeltrace_{version}_pylint
543 defaults: babeltrace
544 node: 'amd64'
545
546 triggers:
547 - pollscm:
548 cron: "@daily"
549
550 builders:
551 - shell:
552 !include-raw-escape: scripts/babeltrace/pylint.sh
553
554 publishers:
555 - archive:
556 artifacts: 'black.out,flake8.out'
557 - email-ext:
558 recipients: '{obj:email_to}'
559 reply-to: ci-notification@lists.lttng.org
560 always: false
561 unstable: false
562 first-failure: true
563 first-unstable: true
564 not-built: false
565 aborted: false
566 regression: false
567 failure: false
568 second-failure: false
569 improvement: false
570 still-failing: false
571 success: false
572 fixed: false
573 fixed-unhealthy: true
574 still-unstable: false
575 pre-build: false
576 matrix-trigger: only-parent
577 send-to:
578 - recipients
579
580 # Use - in version number since yaml anchor do not support dot
581 - babeltrace_version_glib-2-28-6_anchor: &babeltrace_version_glib-2-28-6_anchor
582 name: 'babeltrace_version_glib_anchor'
583 defaults: babeltrace
584 node: 'amd64'
585
586 builders:
587 - inject:
588 properties-content: |
589 LD_LIBRARY_PATH=$WORKSPACE/glib-2.28.6/BUILD_RESULT/lib
590 PKG_CONFIG_PATH=$WORKSPACE/glib-2.28.6/BUILD_RESULT/lib/pkgconfig
591 arch=amd64
592 conf=std
593 build=std
594 - shell: |
595 wget http://ftp.gnome.org/pub/gnome/sources/glib/2.28/glib-2.28.6.tar.gz
596 tar xvf glib-2.28.6.tar.gz
597 cd glib-2.28.6
598 mkdir BUILD_RESULT
599 ./configure --prefix=$WORKSPACE/glib-2.28.6/BUILD_RESULT
600 make -j `nproc`
601 make install
602
603 - shell:
604 !include-raw-escape: scripts/babeltrace/build.sh
605
606 - job-template:
607 name: babeltrace_{version}_glib-2.28.6
608 triggers:
609 - pollscm:
610 cron: "@daily"
611 <<: *babeltrace_version_glib-2-28-6_anchor
612 publishers:
613 - archive:
614 artifacts: 'tap/**'
615 allow-empty: false
616 - email-ext:
617 recipients: '{obj:email_to}'
618 reply-to: ci-notification@lists.lttng.org
619 always: false
620 unstable: false
621 first-failure: true
622 first-unstable: true
623 not-built: false
624 aborted: false
625 regression: false
626 failure: false
627 second-failure: false
628 improvement: false
629 still-failing: false
630 success: false
631 fixed: false
632 fixed-unhealthy: true
633 still-unstable: false
634 pre-build: false
635 matrix-trigger: only-parent
636 send-to:
637 - recipients
638
639 - job-template:
640 name: dev_{user}_babeltrace_{version}_glib-2.28.6
641 <<: *babeltrace_version_glib-2-28-6_anchor
642
643 publishers:
644 - email-ext:
645 recipients: '{obj:email_to}'
646 reply-to: ci-notification@lists.lttng.org
647 always: false
648 unstable: false
649 first-failure: true
650 first-unstable: true
651 not-built: false
652 aborted: false
653 regression: false
654 failure: false
655 second-failure: false
656 improvement: false
657 still-failing: false
658 success: false
659 fixed: false
660 fixed-unhealthy: true
661 still-unstable: false
662 pre-build: false
663 matrix-trigger: only-parent
664 send-to:
665 - recipients
666
667
668 ## Views
669 - view-template:
670 name: 'Babeltrace'
671 view-type: list
672 regex: 'babeltrace[-_].*'
673
674
675 ## Projects
676 - project:
677 name: babeltrace1
678 github_user: efficios
679 github_name: babeltrace
680 email_to: 'ci-notification@lists.lttng.org, cc:jgalar@efficios.com'
681 version:
682 - stable-1.5
683 jobs:
684 - 'babeltrace_{version}_{buildtype}':
685 buildtype: build
686 arch: !!python/tuple [amd64]
687 build: !!python/tuple [std, oot, dist, oot-dist]
688 conf: !!python/tuple [std, static, python-bindings]
689 - 'babeltrace_{version}_{buildtype}':
690 buildtype: portbuild
691 arch: !!python/tuple [armhf, arm64, powerpc, ppc64el, i386]
692 build: !!python/tuple [std]
693 conf: !!python/tuple [std, python-bindings]
694 - 'babeltrace_{version}_{buildtype}':
695 buildtype: slesbuild
696 arch: !!python/tuple [sles12sp2]
697 build: !!python/tuple [std]
698 conf: !!python/tuple [std]
699 - 'babeltrace_{version}_{buildtype}':
700 buildtype: elbuild
701 arch: !!python/tuple [el8]
702 build: !!python/tuple [std]
703 conf: !!python/tuple [std]
704 - 'babeltrace_{version}_{buildtype}':
705 buildtype: solarisbuild
706 arch: !!python/tuple [sol10-i386, sol11-i386]
707 build: !!python/tuple [std]
708 conf: !!python/tuple [std, static]
709 - 'babeltrace_{version}_{buildtype}':
710 buildtype: macosxbuild
711 arch: !!python/tuple [macosx]
712 build: !!python/tuple [std]
713 conf: !!python/tuple [std]
714 - 'babeltrace_{version}_{cctype}':
715 cctype: clangbuild
716 arch: !!python/tuple [amd64]
717 build: !!python/tuple [std]
718 conf: !!python/tuple [std, static]
719 cc: !!python/tuple [clang-3.9, clang-4.0, clang-6.0, clang-7]
720 - 'babeltrace_{version}_winbuild':
721 arch: !!python/tuple [cygwin64]
722 build: !!python/tuple [std]
723 conf: !!python/tuple [std]
724 - 'babeltrace_{version}_release':
725 version: v1.5
726 - 'babeltrace_{version}_cppcheck'
727 - 'babeltrace_{version}_scan-build'
728
729 - project:
730 name: babeltrace2
731 github_user: efficios
732 github_name: babeltrace
733 email_to: 'ci-notification@lists.lttng.org, cc:jgalar@efficios.com'
734 version:
735 - stable-2.0
736 - master
737 jobs:
738 - 'babeltrace_{version}_{buildtype}':
739 buildtype: build
740 arch: !!python/tuple [amd64]
741 build: !!python/tuple [std, oot, dist, oot-dist]
742 conf: !!python/tuple [std, static, prod, min]
743 - 'babeltrace_{version}_{buildtype}':
744 buildtype: portbuild
745 arch: !!python/tuple [armhf, arm64, powerpc, ppc64el, i386]
746 build: !!python/tuple [std]
747 conf: !!python/tuple [std, prod]
748 - 'babeltrace_{version}_{buildtype}':
749 buildtype: slesbuild
750 arch: !!python/tuple [sles12sp2]
751 build: !!python/tuple [std]
752 conf: !!python/tuple [std, prod]
753 - 'babeltrace_{version}_{buildtype}':
754 buildtype: elbuild
755 arch: !!python/tuple [el8]
756 build: !!python/tuple [std]
757 conf: !!python/tuple [std, prod]
758 - 'babeltrace_{version}_{buildtype}':
759 buildtype: macosxbuild
760 arch: !!python/tuple [macosx]
761 build: !!python/tuple [std]
762 conf: !!python/tuple [std, prod]
763 - 'babeltrace_{version}_{cctype}':
764 cctype: clangbuild
765 arch: !!python/tuple [amd64]
766 build: !!python/tuple [std]
767 conf: !!python/tuple [std, static, prod]
768 cc: !!python/tuple [clang-3.9, clang-4.0, clang-6.0, clang-7]
769 - 'babeltrace_{version}_winbuild':
770 arch: !!python/tuple [cygwin64, msys2-mingw32, msys2-mingw64]
771 build: !!python/tuple [std]
772 conf: !!python/tuple [std]
773 - 'babeltrace_{version}_release':
774 version: v2.0
775 - 'babeltrace_{version}_cppcheck'
776 - 'babeltrace_{version}_scan-build'
777 - 'babeltrace_{version}_pylint'
778 - 'babeltrace_{version}_coverity':
779 version: master
780 - 'babeltrace_{version}_glib-2.28.6':
781 version: master
782
783 - project:
784 name: gerrit-babeltrace
785 github_user: efficios
786 github_name: babeltrace
787 jobs:
788 - 'dev_gerrit_babeltrace_{buildtype}':
789 buildtype: build
790 arch: !!python/tuple [amd64, armhf, arm64, powerpc, ppc64el, i386]
791 build: !!python/tuple [std, oot, dist, oot-dist]
792 conf: !!python/tuple [std, static, prod, min]
793 filter: '(build=="std" && conf=="std") || (arch=="amd64")'
794 - 'dev_gerrit_babeltrace_{buildtype}':
795 buildtype: macosxbuild
796 arch: !!python/tuple [macosx]
797 build: !!python/tuple [std]
798 conf: !!python/tuple [std, prod]
799 filter: ''
800 - 'dev_gerrit_babeltrace_winbuild':
801 arch: !!python/tuple [cygwin64, msys2-mingw64]
802 build: !!python/tuple [std]
803 conf: !!python/tuple [std]
804 - 'dev_gerrit_babeltrace_pylint'
805
806
807 - project:
808 name: babeltrace-jgalar-staging
809 user: jgalar
810 github_user: jgalar
811 github_name: babeltrace
812 email_to: "jgalar@efficios.com"
813 version:
814 - stable-1.5-staging
815 jobs:
816 - 'dev_{user}_babeltrace_{version}_{buildtype}':
817 buildtype: build
818 arch: !!python/tuple [amd64]
819 build: !!python/tuple [std, oot, dist, oot-dist]
820 conf: !!python/tuple [std, static, python-bindings]
821 - 'dev_{user}_babeltrace_{version}_{buildtype}':
822 buildtype: macosxbuild
823 arch: !!python/tuple [macosx]
824 build: !!python/tuple [std]
825 conf: !!python/tuple [std]
826
827
828 - project:
829 name: babeltrace2-jgalar-staging
830 user: jgalar
831 github_user: jgalar
832 github_name: babeltrace
833 email_to: "jgalar@efficios.com"
834 version:
835 - stable-2.0-staging
836 - master-staging
837 jobs:
838 - 'dev_{user}_babeltrace_{version}_glib-2.28.6':
839 version:
840 - master-staging
841 - 'dev_{user}_babeltrace_{version}_{buildtype}':
842 buildtype: build
843 arch: !!python/tuple [amd64]
844 build: !!python/tuple [std, oot, dist, oot-dist]
845 conf: !!python/tuple [std, static, prod, min]
846 - 'dev_{user}_babeltrace_{version}_{buildtype}':
847 buildtype: macosxbuild
848 arch: !!python/tuple [macosx]
849 build: !!python/tuple [std]
850 conf: !!python/tuple [std, prod]
851
852 - project:
853 name: babeltrace-views
854 views:
855 - Babeltrace
This page took 0.046382 seconds and 5 git commands to generate.