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