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