jjb: Add dev_review_lttng-ust_lttng-tools_master for SLES
[lttng-ci.git] / jobs / lttng-ust.yaml
CommitLineData
00ece24a
MJ
1---
2## Defaults
2b68721a
MJ
3- defaults:
4 name: lttng-ust
5 description: |
6 LTTng-UST, the Linux Trace Toolkit Next Generation Userspace Tracer, is a
7 port of the low-overhead tracing capabilities of the LTTng kernel tracer
8 to user-space. The library "liblttng-ust" enables tracing of
9 applications and libraries.
10
11 <p>Job is managed by Jenkins Job Builder.</p>
12
13 project-type: freestyle
14
2b68721a 15 wrappers:
2356937a
MJ
16 - ansicolor: &lttng-ust_wrapper_ansicolor_defaults
17 colormap: xterm
18 - timeout: &lttng-ust_wrapper_timeout_defaults
19 timeout: 20
20 fail: true
21 type: no-activity
22 write-description: "<h1 style=\"color:red\">This build failed due to timeout.</h1>"
2b68721a 23 - timestamps
2356937a 24 - workspace-cleanup
2b68721a
MJ
25
26 scm:
27 - git:
4d27af8f 28 url: https://github.com/{github_user}/{github_name}.git
2b68721a 29 browser: githubweb
51ca880a 30 browser-url: https://github.com/{github_user}/{github_name}
2b68721a
MJ
31 branches:
32 - origin/{version}
1f4fba8c 33 basedir: src/lttng-ust
89b9225e 34 skip-tag: true
2b68721a
MJ
35
36 triggers:
37 - pollscm:
38 cron: "@hourly"
39
40 properties:
69f05d59
MJ
41 - inject:
42 properties-content: |
43 PROJECT_NAME=lttng-ust
edf72710 44 - build-discarder:
3b228cdd
MJ
45 num-to-keep: 10
46 artifact-num-to-keep: 2
2b68721a 47 - github:
51ca880a 48 url: https://github.com/{github_user}/{github_name}
2b68721a
MJ
49
50
a3bc0379 51## Anchors
00ece24a 52- _lttng-ust_matrix_axes_defaults: &lttng-ust_matrix_axes_defaults
2356937a 53 name: 'lttng-ust_matrix_axes_defaults'
2b68721a 54 project-type: matrix
ca8c6144 55 node: 'master' # Applies only to matrix flyweight task
2356937a 56 execution-strategy: &lttng-ust_matrix_execution-strategy_defaults
568b5cbd 57 combination-filter: '{filter}'
2356937a
MJ
58 touchstone:
59 expr: '{touchstone}'
60 result: unstable
2b68721a 61 axes:
94a6d1fb 62 - axis: &lttng-ust_matrix_axis_platform
2b68721a 63 type: slave
94a6d1fb
MJ
64 name: platform
65 values: '{obj:platforms}'
2356937a 66 - axis: &lttng-ust_matrix_axis_conf
2b68721a
MJ
67 type: user-defined
68 name: conf
2356937a
MJ
69 values: '{obj:confs}'
70 - axis: &lttng-ust_matrix_axis_build
2b68721a
MJ
71 type: user-defined
72 name: build
2356937a
MJ
73 values: '{obj:builds}'
74 - axis: &lttng-ust_matrix_axis_liburcu_version
75 type: user-defined
76 name: liburcu_version
77 values: '{obj:liburcu_versions}'
2b68721a 78
00ece24a
MJ
79- _lttng-ust_matrix_axes_review_lttng-tools: &lttng-ust_matrix_axes_review_lttng-tools
80 name: 'lttng-ust_matrix_axes_review_lttng-tools'
81056679
JR
81 project-type: matrix
82 node: 'master' # Applies only to matrix flyweight task
2356937a 83 execution-strategy: *lttng-ust_matrix_execution-strategy_defaults
81056679 84 axes:
94a6d1fb 85 - axis: *lttng-ust_matrix_axis_platform
2356937a
MJ
86 - axis: *lttng-ust_matrix_axis_conf
87 - axis: *lttng-ust_matrix_axis_build
88
00ece24a 89- _lttng-ust_steps_copyartifact_defaults:
2356937a
MJ
90 name: 'lttng-ust_steps_copyartifact_defaults'
91 steps:
92 - copyartifact: &lttng-ust_steps_copyartifact_defaults
93 project: ''
94 which-build: last-successful
95 stable: false
96 filter: 'build/**'
97 target: 'deps'
98 do-not-fingerprint: true
81056679 99
00ece24a 100- _lttng-ust_builders_defaults: &lttng-ust_builders_defaults
2356937a 101 name: 'lttng-ust_builders_defaults'
2b68721a 102 builders:
2356937a
MJ
103 # Generate a properties file to add additionnal env
104 - shell: |
105 #!/bin/bash
106 set -exu
107 # Select the liburcu conf based on the current conf
108 case "$conf" in
109 debug-rcu|tls_fallback)
110 liburcu_conf=$conf
111 ;;
112 *)
113 liburcu_conf=std
114 ;;
115 esac
116 echo "liburcu_conf=$liburcu_conf" > env.properties
117
118 # Inject the additionnal env early to use them in the copyartifact step
119 - inject:
120 properties-file: env.properties
121
122 - copyartifact:
123 <<: *lttng-ust_steps_copyartifact_defaults
94a6d1fb 124 project: '{job_prefix}liburcu_${{liburcu_version}}_{buildtype}/platform=${{platform}},conf=${{liburcu_conf}},build=std'
2356937a
MJ
125
126 # Run the build
2b68721a 127 - shell:
51c9c62d
MJ
128 !include-raw-escape:
129 - scripts/common/print.sh
130 - scripts/lttng-ust/build.sh
2b68721a 131
00ece24a
MJ
132- _lttng-ust_builders_review_lttng-tools: &lttng-ust_builders_review_lttng-tools
133 name: 'lttng-ust_builders_review_lttng-tools'
2356937a 134
7c50e5dd 135 builders:
2356937a
MJ
136 # Generate a properties file to add additionnal env
137 - shell: |
138 #!/bin/bash
139 set -exu
140 # Select the liburcu conf based on the current conf
141 case "$conf" in
142 debug-rcu|tls_fallback)
143 liburcu_conf=$conf
144 ;;
145 *)
146 liburcu_conf=std
147 ;;
148 esac
149 echo "liburcu_conf=$liburcu_conf" >> env.properties
150 # Select the liburcu version based on the gerrit branch
151 case "$GERRIT_BRANCH" in
152 master)
153 liburcu_version=master
154 ;;
155 *)
156 liburcu_version={liburcu_version}
157 ;;
158 esac
159 echo "liburcu_version=$liburcu_version" >> env.properties
160
161 # Inject the additionnal env early to use them in the copyartifact step
162 - inject:
163 properties-file: env.properties
164
7c50e5dd 165 - copyartifact:
2356937a 166 <<: *lttng-ust_steps_copyartifact_defaults
94a6d1fb 167 project: 'liburcu_${{liburcu_version}}_{buildtype}/platform=${{platform}},conf=${{liburcu_conf}},build=std'
2356937a
MJ
168
169 - copyartifact:
170 <<: *lttng-ust_steps_copyartifact_defaults
94a6d1fb 171 project: 'babeltrace_{babeltrace_version}_{buildtype}/platform=${{platform}},conf=std,build=std'
2356937a
MJ
172
173 - shell: |
174 #!/bin/bash
175 set -exu
176 git clone -b "$GERRIT_BRANCH" https://review.lttng.org/lttng-tools src/lttng-tools
7c50e5dd
JR
177
178 - shell:
179 !include-raw-escape:
180 - scripts/common/print.sh
181 - scripts/lttng-ust/build.sh
2356937a 182
7c50e5dd
JR
183 - shell:
184 !include-raw-escape:
185 - scripts/lttng-tools/gerrit-install-deps.sh
2356937a 186
7c50e5dd
JR
187 - shell:
188 !include-raw-escape:
189 - scripts/common/print.sh
190 - scripts/lttng-tools/build.sh
a3bc0379 191
00ece24a 192- _lttng-ust_publishers_defaults: &lttng-ust_publishers_defaults
2356937a 193 name: 'lttng-ust_publishers_defaults'
2b68721a 194 publishers:
2356937a 195 - tap: &lttng-ust_publisher_tap_defaults
1f4fba8c 196 results: 'tap/**/*.log'
1d56e325 197 fail-if-no-results: true
2b68721a 198 failed-tests-mark-build-as-failure: true
4f04deeb
MJ
199 include-comment-diagnostics: true
200 output-tap-to-console: false
95654431 201 todo-is-failure: false
2356937a
MJ
202 - raw: &lttng-ust_publisher_warnings-ng_defaults
203 xml: |
204 <io.jenkins.plugins.analysis.core.steps.IssuesRecorder plugin="warnings-ng">
205 <analysisTools>
206 <io.jenkins.plugins.analysis.warnings.Gcc4>
207 <id/>
208 <name/>
209 <jenkins plugin="plugin-util-api"/>
210 <pattern/>
211 <reportEncoding/>
212 <skipSymbolicLinks>false</skipSymbolicLinks>
213 </io.jenkins.plugins.analysis.warnings.Gcc4>
2356937a
MJ
214 </analysisTools>
215 <sourceCodeEncoding/>
216 <sourceDirectory/>
217 <sourceDirectories/>
218 <ignoreQualityGate>false</ignoreQualityGate>
219 <ignoreFailedBuilds>true</ignoreFailedBuilds>
220 <failOnError>false</failOnError>
221 <healthy>0</healthy>
222 <unhealthy>0</unhealthy>
223 <minimumSeverity plugin="analysis-model-api">
224 <name>LOW</name>
225 </minimumSeverity>
226 <filters/>
227 <isEnabledForFailure>true</isEnabledForFailure>
228 <isAggregatingResults>true</isAggregatingResults>
229 <isBlameDisabled>false</isBlameDisabled>
230 <skipPublishingChecks>true</skipPublishingChecks>
231 <publishAllIssues>false</publishAllIssues>
232 <qualityGates>
233 <io.jenkins.plugins.analysis.core.util.QualityGate>
234 <threshold>1</threshold>
235 <type>TOTAL</type>
236 <status>WARNING</status>
237 </io.jenkins.plugins.analysis.core.util.QualityGate>
238 </qualityGates>
239 <trendChartType>AGGREGATION_TOOLS</trendChartType>
240 <scm/>
241 </io.jenkins.plugins.analysis.core.steps.IssuesRecorder>
242 - archive: &lttng-ust_publisher_archive_defaults
4174b905 243 artifacts: 'build/**,tap/**,log/**'
23f01bc3 244 follow-symlinks: true
2b68721a 245 allow-empty: false
2356937a
MJ
246 - workspace-cleanup: &lttng-ust_publisher_workspace-cleanup_defaults
247 clean-if:
248 - failure: false
ee4b760a
MJ
249 - ircbot: &lttng-ust_publisher_ircbot_defaults
250 strategy: statechange-only
2abd3a64
MJ
251 message-type: summary
252 matrix-notifier: only-parent
2356937a 253 - email-ext: &lttng-ust_publisher_email-ext_defaults
68fff945
JR
254 recipients: '{obj:email_to}'
255 reply-to: ci-notification@lists.lttng.org
256 always: false
257 unstable: false
258 first-failure: true
259 first-unstable: true
260 not-built: false
261 aborted: false
262 regression: false
263 failure: false
264 second-failure: false
265 improvement: false
266 still-failing: false
267 success: false
268 fixed: false
269 fixed-unhealthy: true
270 still-unstable: false
271 pre-build: false
272 matrix-trigger: only-parent
273 send-to:
274 - recipients
2b68721a 275
00ece24a
MJ
276- _lttng-ust_publishers_review: &lttng-ust_publishers_review
277 name: 'lttng-ust_publishers_review'
2356937a
MJ
278 publishers:
279 - tap: *lttng-ust_publisher_tap_defaults
280 # Fail job on any compiler warnings
281 - raw:
282 xml: |
283 <io.jenkins.plugins.analysis.core.steps.IssuesRecorder plugin="warnings-ng">
284 <analysisTools>
285 <io.jenkins.plugins.analysis.warnings.Gcc4>
286 <id/>
287 <name/>
288 <jenkins plugin="plugin-util-api"/>
289 <pattern/>
290 <reportEncoding/>
291 <skipSymbolicLinks>false</skipSymbolicLinks>
292 </io.jenkins.plugins.analysis.warnings.Gcc4>
2356937a
MJ
293 </analysisTools>
294 <sourceCodeEncoding/>
295 <sourceDirectory/>
296 <sourceDirectories/>
297 <ignoreQualityGate>false</ignoreQualityGate>
298 <ignoreFailedBuilds>true</ignoreFailedBuilds>
299 <failOnError>false</failOnError>
300 <healthy>0</healthy>
301 <unhealthy>0</unhealthy>
302 <minimumSeverity plugin="analysis-model-api">
303 <name>LOW</name>
304 </minimumSeverity>
305 <filters/>
306 <isEnabledForFailure>true</isEnabledForFailure>
307 <isAggregatingResults>true</isAggregatingResults>
308 <isBlameDisabled>false</isBlameDisabled>
309 <skipPublishingChecks>true</skipPublishingChecks>
310 <publishAllIssues>false</publishAllIssues>
311 <qualityGates>
312 <io.jenkins.plugins.analysis.core.util.QualityGate>
313 <threshold>1</threshold>
314 <type>TOTAL</type>
315 <status>FAILED</status>
316 </io.jenkins.plugins.analysis.core.util.QualityGate>
317 </qualityGates>
318 <trendChartType>AGGREGATION_TOOLS</trendChartType>
319 <scm/>
320 </io.jenkins.plugins.analysis.core.steps.IssuesRecorder>
321 - archive: *lttng-ust_publisher_archive_defaults
322 - workspace-cleanup: *lttng-ust_publisher_workspace-cleanup_defaults
74cc8870
MJ
323
324
2356937a 325## Templates
74cc8870
MJ
326- job-template:
327 name: '{job_prefix}lttng-ust_{version}_{buildtype}'
328 defaults: lttng-ust
329
2356937a
MJ
330 <<: *lttng-ust_matrix_axes_defaults
331 <<: *lttng-ust_builders_defaults
332 <<: *lttng-ust_publishers_defaults
333
74cc8870 334
a3bc0379 335- job-template:
00ece24a 336 name: dev_review_lttng-ust_{version}_{buildtype}
a3bc0379
MJ
337 defaults: lttng-ust
338 concurrent: true
339
340 scm:
341 - git:
342 url: https://review.lttng.org/lttng-ust
343 refspec: 'refs/changes/*:refs/changes/*'
344 branches:
345 - '$GERRIT_REFSPEC'
346 basedir: src/lttng-ust
347 skip-tag: true
348
349 triggers:
00ece24a 350 - gerrit: &lttng-ust_trigger_gerrit_defaults
a3bc0379
MJ
351 trigger-on:
352 - comment-added-event:
353 approval-category: 'CI-Build'
354 approval-value: 1
355 projects:
356 - project-compare-type: 'PLAIN'
357 project-pattern: 'lttng-ust'
358 branches:
00ece24a
MJ
359 - branch-compare-type: 'PLAIN'
360 branch-pattern: '{version}'
a3bc0379 361
2356937a
MJ
362 <<: *lttng-ust_matrix_axes_defaults
363 <<: *lttng-ust_builders_defaults
00ece24a 364 <<: *lttng-ust_publishers_review
a3bc0379 365
85d7c882
MJ
366 properties:
367 - inject:
368 properties-content: |
369 PROJECT_NAME=lttng-ust
370 - build-discarder:
371 days-to-keep: 1
372 - throttle:
373 option: 'category'
374 categories:
375 - 'gerrit-{buildtype}'
376
a3bc0379 377
7c50e5dd 378- job-template:
00ece24a 379 name: dev_review_lttng-ust_lttng-tools_{version}_{buildtype}
7c50e5dd
JR
380 defaults: lttng-ust
381 concurrent: true
382
383 scm:
384 - git:
385 url: https://review.lttng.org/lttng-ust
386 refspec: 'refs/changes/*:refs/changes/*'
387 branches:
388 - '$GERRIT_REFSPEC'
389 basedir: src/lttng-ust
390 skip-tag: true
7c50e5dd
JR
391
392 triggers:
00ece24a 393 - gerrit: *lttng-ust_trigger_gerrit_defaults
7c50e5dd 394
00ece24a
MJ
395 <<: *lttng-ust_matrix_axes_review_lttng-tools
396 <<: *lttng-ust_builders_review_lttng-tools
397 <<: *lttng-ust_publishers_review
7c50e5dd
JR
398
399 properties:
400 - inject:
401 properties-content: |
402 PROJECT_NAME=lttng-ust
403 - build-discarder:
404 days-to-keep: 1
405 - throttle:
406 option: 'category'
407 categories:
408 - 'gerrit-{buildtype}'
409
7c50e5dd 410
2b68721a
MJ
411- job-template:
412 name: lttng-ust_{version}_scan-build
413 defaults: lttng-ust
5b40802e 414 node: 'deb12-amd64'
2b68721a
MJ
415
416 triggers:
417 - pollscm:
418 cron: "@daily"
419
420 builders:
c9b78c7b 421 - copyartifact:
2356937a 422 <<: *lttng-ust_steps_copyartifact_defaults
5b40802e 423 project: liburcu_master_linuxbuild/platform=deb12-amd64,conf=std,build=std
2b68721a 424 - shell:
69f05d59 425 !include-raw-escape: scripts/common/scan-build.sh
2b68721a
MJ
426
427 publishers:
428 - html-publisher:
429 name: 'HTML Report'
430 dir: 'scan-build-archive/'
431 files: 'index.html'
2356937a 432 - workspace-cleanup: *lttng-ust_publisher_workspace-cleanup_defaults
ee4b760a 433 - ircbot: *lttng-ust_publisher_ircbot_defaults
2356937a 434
2b68721a 435
cdb4cba4
MJ
436- job-template:
437 name: lttng-ust_{version}_coverity
438 defaults: lttng-ust
5b40802e 439 node: 'deb12-amd64'
cdb4cba4
MJ
440
441 triggers:
442 - pollscm:
443 cron: "@daily"
444
445 wrappers:
2356937a
MJ
446 - ansicolor: *lttng-ust_wrapper_ansicolor_defaults
447 - timeout: *lttng-ust_wrapper_timeout_defaults
cdb4cba4 448 - timestamps
2356937a 449 - workspace-cleanup
cdb4cba4
MJ
450 - credentials-binding:
451 - username-password-separated:
452 credential-id: lttng-ust_coverity_token
453 username: COVERITY_SCAN_PROJECT_NAME
454 password: COVERITY_SCAN_TOKEN
455
456 builders:
457 - copyartifact:
2356937a 458 <<: *lttng-ust_steps_copyartifact_defaults
5b40802e 459 project: liburcu_master_linuxbuild/platform=deb12-amd64,conf=std,build=std
cdb4cba4 460 - shell:
ef63064f 461 !include-raw-escape: scripts/common/coverity.sh
cdb4cba4
MJ
462
463 publishers:
1f4fba8c
MJ
464 - archive:
465 artifacts: 'analysis-results.tgz,cov-int/**'
466 allow-empty: false
2356937a 467 - workspace-cleanup: *lttng-ust_publisher_workspace-cleanup_defaults
ee4b760a 468 - ircbot: *lttng-ust_publisher_ircbot_defaults
2b68721a 469
2b68721a 470
3579dc14
MJ
471## Views
472- view-template:
473 name: 'LTTng-ust'
474 view-type: list
475 regex: 'lttng-ust[-_].*'
2b68721a 476
2b68721a 477
3579dc14 478## Projects
2b68721a
MJ
479- project:
480 name: lttng-ust
74cc8870 481 job_prefix: ''
51ca880a
MJ
482 github_user: lttng
483 github_name: lttng-ust
68fff945 484 email_to: 'ci-notification@lists.lttng.org, cc:mathieu.desnoyers@efficios.com'
2b68721a 485 jobs:
03297c9e 486 ## Master ##
070f084d
MJ
487 - '{job_prefix}lttng-ust_{version}_{buildtype}':
488 buildtype: linuxbuild
489 version: master
30e5c12c 490 platforms: !!python/tuple [deb12-amd64]
070f084d
MJ
491 builds: !!python/tuple [std, dist, oot, oot-dist]
492 confs: !!python/tuple [std, agents, debug-rcu, tls_fallback]
70f5aee2 493 liburcu_versions: !!python/tuple [stable-0.13, stable-0.14, master]
070f084d
MJ
494 filter: '(build=="std") || ((liburcu_version=="master" && (conf=="std" || conf=="agents")))'
495 touchstone: ''
2356937a 496 - '{job_prefix}lttng-ust_{version}_{buildtype}':
fe16cb00
MJ
497 buildtype: portbuild
498 version: master
29901a39 499 platforms: !!python/tuple [deb12-armhf, deb12-arm64, deb12-ppc64el, deb12-i386]
2356937a
MJ
500 builds: !!python/tuple [std]
501 confs: !!python/tuple [std, agents]
502 liburcu_versions: !!python/tuple [stable-0.13, master]
568b5cbd 503 filter: ''
2356937a
MJ
504 touchstone: ''
505 - '{job_prefix}lttng-ust_{version}_{buildtype}':
fe16cb00
MJ
506 buildtype: slesbuild
507 version: master
f3c8d88c 508 platforms: !!python/tuple [sles12sp5-amd64, sles15sp4-amd64]
2356937a
MJ
509 builds: !!python/tuple [std]
510 confs: !!python/tuple [agents]
511 liburcu_versions: !!python/tuple [stable-0.13, master]
568b5cbd 512 filter: ''
2356937a
MJ
513 touchstone: ''
514 - '{job_prefix}lttng-ust_{version}_{buildtype}':
568b5cbd
MJ
515 buildtype: elbuild
516 version: master
5bfd388f 517 platforms: !!python/tuple [el7-amd64, el8-amd64, el9-amd64, el7-arm64, el8-arm64, el9-arm64]
2356937a
MJ
518 builds: !!python/tuple [std]
519 confs: !!python/tuple [std]
520 liburcu_versions: !!python/tuple [stable-0.13, master]
568b5cbd 521 filter: ''
2356937a 522 touchstone: ''
6871000c
MJ
523 - '{job_prefix}lttng-ust_{version}_{buildtype}':
524 buildtype: yoctobuild
525 version: master
1b2501b5 526 platforms: !!python/tuple [yocto23-powerpcspe, yocto40-powerpc, yocto40-ppc64]
6871000c
MJ
527 builds: !!python/tuple [std]
528 confs: !!python/tuple [std]
529 liburcu_versions: !!python/tuple [stable-0.13, master]
530 filter: ''
531 touchstone: ''
2356937a 532 - '{job_prefix}lttng-ust_{version}_{buildtype}':
0f7217a0
MJ
533 buildtype: freebsdbuild
534 version: master
94a6d1fb 535 platforms: !!python/tuple [freebsd-amd64]
2356937a
MJ
536 builds: !!python/tuple [std]
537 confs: !!python/tuple [agents]
538 liburcu_versions: !!python/tuple [stable-0.13, master]
0f7217a0 539 filter: ''
2356937a 540 touchstone: ''
fe16cb00
MJ
541 - 'lttng-ust_{version}_scan-build':
542 version: master
cdb4cba4
MJ
543 - 'lttng-ust_{version}_coverity':
544 version: master
8713492f 545
0fc8b7ac 546 ## Stable 2.13 ##
070f084d
MJ
547 - '{job_prefix}lttng-ust_{version}_{buildtype}':
548 buildtype: linuxbuild
549 version: stable-2.13
30e5c12c 550 platforms: !!python/tuple [deb12-amd64]
070f084d
MJ
551 builds: !!python/tuple [std, dist, oot, oot-dist]
552 confs: !!python/tuple [std, agents, debug-rcu, tls_fallback]
70f5aee2 553 liburcu_versions: !!python/tuple [stable-0.13, stable-0.14, master]
070f084d
MJ
554 filter: '(build=="std") || ((liburcu_version=="stable-0.13" && (conf=="std" || conf=="agents")))'
555 touchstone: ''
2356937a 556 - '{job_prefix}lttng-ust_{version}_{buildtype}':
0fc8b7ac
MJ
557 buildtype: portbuild
558 version: stable-2.13
29901a39 559 platforms: !!python/tuple [deb12-armhf, deb12-arm64, deb12-ppc64el, deb12-i386]
2356937a
MJ
560 builds: !!python/tuple [std]
561 confs: !!python/tuple [std, agents]
562 liburcu_versions: !!python/tuple [stable-0.13, master]
0fc8b7ac 563 filter: ''
2356937a
MJ
564 touchstone: ''
565 - '{job_prefix}lttng-ust_{version}_{buildtype}':
0fc8b7ac
MJ
566 buildtype: slesbuild
567 version: stable-2.13
f3c8d88c 568 platforms: !!python/tuple [sles12sp5-amd64, sles15sp4-amd64]
2356937a
MJ
569 builds: !!python/tuple [std]
570 confs: !!python/tuple [agents]
571 liburcu_versions: !!python/tuple [stable-0.13, master]
0fc8b7ac 572 filter: ''
2356937a
MJ
573 touchstone: ''
574 - '{job_prefix}lttng-ust_{version}_{buildtype}':
0fc8b7ac
MJ
575 buildtype: elbuild
576 version: stable-2.13
5bfd388f 577 platforms: !!python/tuple [el7-amd64, el8-amd64, el9-amd64, el7-arm64, el8-arm64, el9-arm64]
2356937a
MJ
578 builds: !!python/tuple [std]
579 confs: !!python/tuple [std]
580 liburcu_versions: !!python/tuple [stable-0.13, master]
0fc8b7ac 581 filter: ''
2356937a 582 touchstone: ''
2e454c3b
MJ
583 - '{job_prefix}lttng-ust_{version}_{buildtype}':
584 buildtype: yoctobuild
585 version: stable-2.13
1b2501b5 586 platforms: !!python/tuple [yocto23-powerpcspe, yocto40-powerpc, yocto40-ppc64]
2e454c3b
MJ
587 builds: !!python/tuple [std]
588 confs: !!python/tuple [std]
589 liburcu_versions: !!python/tuple [stable-0.13, master]
590 filter: ''
591 touchstone: ''
0fc8b7ac
MJ
592 - 'lttng-ust_{version}_scan-build':
593 version: stable-2.13
594
03297c9e 595 ## Stable 2.12 ##
070f084d
MJ
596 - '{job_prefix}lttng-ust_{version}_{buildtype}':
597 buildtype: linuxbuild
598 version: stable-2.12
30e5c12c 599 platforms: !!python/tuple [deb12-amd64]
070f084d
MJ
600 builds: !!python/tuple [std, dist, oot, oot-dist]
601 confs: !!python/tuple [std, agents, debug-rcu, tls_fallback]
70f5aee2 602 liburcu_versions: !!python/tuple [stable-0.13, stable-0.14, master]
070f084d
MJ
603 filter: '(build=="std") || ((liburcu_version=="stable-0.13" && (conf=="std" || conf=="agents")))'
604 touchstone: ''
2356937a 605 - '{job_prefix}lttng-ust_{version}_{buildtype}':
03297c9e
MJ
606 buildtype: portbuild
607 version: stable-2.12
29901a39 608 platforms: !!python/tuple [deb12-armhf, deb12-arm64, deb12-ppc64el, deb12-i386]
2356937a
MJ
609 builds: !!python/tuple [std]
610 confs: !!python/tuple [std, agents]
d24ed5e3 611 liburcu_versions: !!python/tuple [stable-0.13, master]
03297c9e 612 filter: ''
2356937a
MJ
613 touchstone: ''
614 - '{job_prefix}lttng-ust_{version}_{buildtype}':
03297c9e
MJ
615 buildtype: slesbuild
616 version: stable-2.12
f3c8d88c 617 platforms: !!python/tuple [sles12sp5-amd64, sles15sp4-amd64]
2356937a
MJ
618 builds: !!python/tuple [std]
619 confs: !!python/tuple [agents]
d24ed5e3 620 liburcu_versions: !!python/tuple [stable-0.13]
03297c9e 621 filter: ''
2356937a
MJ
622 touchstone: ''
623 - '{job_prefix}lttng-ust_{version}_{buildtype}':
03297c9e
MJ
624 buildtype: elbuild
625 version: stable-2.12
b53ef031 626 platforms: !!python/tuple [el7-amd64, el8-amd64, el9-amd64, el7-arm64, el8-arm64, el9-arm64]
2356937a
MJ
627 builds: !!python/tuple [std]
628 confs: !!python/tuple [std]
2e454c3b
MJ
629 liburcu_versions: !!python/tuple [stable-0.13]
630 filter: ''
631 touchstone: ''
632 - '{job_prefix}lttng-ust_{version}_{buildtype}':
633 buildtype: yoctobuild
634 version: stable-2.12
1b2501b5 635 platforms: !!python/tuple [yocto23-powerpcspe, yocto40-powerpc, yocto40-ppc64]
2e454c3b
MJ
636 builds: !!python/tuple [std]
637 confs: !!python/tuple [std]
d24ed5e3 638 liburcu_versions: !!python/tuple [stable-0.13]
03297c9e 639 filter: ''
2356937a 640 touchstone: ''
03297c9e
MJ
641 - 'lttng-ust_{version}_scan-build':
642 version: stable-2.12
2b68721a 643
a3bc0379 644- project:
00ece24a 645 name: review-lttng-ust
74cc8870 646 job_prefix: ''
a3bc0379
MJ
647 github_user: lttng
648 github_name: lttng-ust
649 jobs:
00ece24a
MJ
650 ## master ##
651 - 'dev_review_lttng-ust_{version}_{buildtype}':
652 version: master
5b40802e
MJ
653 buildtype: linuxbuild
654 platforms: !!python/tuple [deb12-amd64]
2356937a
MJ
655 builds: !!python/tuple [std, oot, dist, oot-dist]
656 confs: !!python/tuple [std, agents]
70f5aee2 657 liburcu_versions: !!python/tuple [stable-0.14]
c8370e00 658 filter: ''
00ece24a
MJ
659 touchstone: '(build == "std") && (conf == "std")'
660 - 'dev_review_lttng-ust_lttng-tools_{version}_{buildtype}':
661 version: master
5719040c
MJ
662 buildtype: linuxbuild
663 platforms: !!python/tuple [deb12-amd64]
2356937a
MJ
664 builds: !!python/tuple [std, oot, dist, oot-dist]
665 confs: !!python/tuple [std, agents]
7c50e5dd 666 filter: ''
2356937a 667 touchstone: ''
70f5aee2 668 liburcu_version: stable-0.14
7c50e5dd 669 babeltrace_version: stable-2.0
e8cf6627
KS
670 - 'dev_review_lttng-ust_lttng-tools_{version}_{buildtype}':
671 version: master
672 buildtype: slesbuild
673 platforms: !!python/tuple [sles12sp5-amd64, sles15sp4-amd64]
674 builds: !!python/tuple [std]
675 confs: !!python/tuple [agents]
676 filter: ''
677 touchstone: ''
678 liburcu_version: stable-0.14
679 babeltrace_version: stable-2.0
00ece24a
MJ
680 - 'dev_review_lttng-ust_{version}_{buildtype}':
681 version: master
c8370e00 682 buildtype: portbuild
29901a39 683 platforms: !!python/tuple [deb12-armhf, deb12-arm64, deb12-ppc64el, deb12-i386]
2356937a
MJ
684 builds: !!python/tuple [std]
685 confs: !!python/tuple [agents]
70f5aee2 686 liburcu_versions: !!python/tuple [stable-0.14]
c8370e00 687 filter: ''
29901a39 688 touchstone: '(platform == "deb12-i386")'
00ece24a
MJ
689 - 'dev_review_lttng-ust_{version}_{buildtype}':
690 version: master
6185514d 691 buildtype: freebsdbuild
94a6d1fb 692 platforms: !!python/tuple [freebsd-amd64]
2356937a
MJ
693 builds: !!python/tuple [std]
694 confs: !!python/tuple [agents]
70f5aee2 695 liburcu_versions: !!python/tuple [stable-0.14]
6185514d 696 filter: ''
2356937a 697 touchstone: ''
a3bc0379 698
00ece24a
MJ
699 ## Stable 2.13 ##
700 - 'dev_review_lttng-ust_{version}_{buildtype}':
701 version: stable-2.13
5b40802e
MJ
702 buildtype: linuxbuild
703 platforms: !!python/tuple [deb12-amd64]
00ece24a
MJ
704 builds: !!python/tuple [std, oot, dist, oot-dist]
705 confs: !!python/tuple [std, agents]
706 liburcu_versions: !!python/tuple [stable-0.13]
707 filter: ''
708 touchstone: '(build == "std") && (conf == "std")'
709 - 'dev_review_lttng-ust_lttng-tools_{version}_{buildtype}':
710 version: stable-2.13
5719040c
MJ
711 buildtype: linuxbuild
712 platforms: !!python/tuple [deb12-amd64]
00ece24a
MJ
713 builds: !!python/tuple [std, oot, dist, oot-dist]
714 confs: !!python/tuple [std, agents]
715 filter: ''
716 touchstone: ''
717 liburcu_version: stable-0.13
718 babeltrace_version: stable-2.0
719 - 'dev_review_lttng-ust_{version}_{buildtype}':
720 version: stable-2.13
721 buildtype: portbuild
29901a39 722 platforms: !!python/tuple [deb12-armhf, deb12-arm64, deb12-ppc64el, deb12-i386]
00ece24a
MJ
723 builds: !!python/tuple [std]
724 confs: !!python/tuple [agents]
725 liburcu_versions: !!python/tuple [stable-0.13]
726 filter: ''
29901a39 727 touchstone: '(platform == "deb12-i386")'
00ece24a
MJ
728
729 ## Stable 2.12 ##
730 - 'dev_review_lttng-ust_{version}_{buildtype}':
731 version: stable-2.12
5b40802e
MJ
732 buildtype: linuxbuild
733 platforms: !!python/tuple [deb12-amd64]
00ece24a
MJ
734 builds: !!python/tuple [std, oot, dist, oot-dist]
735 confs: !!python/tuple [std, agents]
736 liburcu_versions: !!python/tuple [stable-0.13]
737 filter: ''
738 touchstone: '(build == "std") && (conf == "std")'
739 - 'dev_review_lttng-ust_lttng-tools_{version}_{buildtype}':
740 version: stable-2.12
5719040c
MJ
741 buildtype: linuxbuild
742 platforms: !!python/tuple [deb12-amd64]
00ece24a
MJ
743 builds: !!python/tuple [std, oot, dist, oot-dist]
744 confs: !!python/tuple [std, agents]
745 filter: ''
746 touchstone: ''
747 liburcu_version: stable-0.13
748 babeltrace_version: stable-2.0
749 - 'dev_review_lttng-ust_{version}_{buildtype}':
750 version: stable-2.12
751 buildtype: portbuild
29901a39 752 platforms: !!python/tuple [deb12-armhf, deb12-arm64, deb12-ppc64el, deb12-i386]
00ece24a
MJ
753 builds: !!python/tuple [std]
754 confs: !!python/tuple [agents]
755 liburcu_versions: !!python/tuple [stable-0.13]
756 filter: ''
29901a39 757 touchstone: '(platform == "deb12-i386")'
00ece24a 758
3579dc14 759- project:
e04f80ef 760 name: lttng-ust-views
3579dc14
MJ
761 views:
762 - LTTng-ust
This page took 0.072117 seconds and 4 git commands to generate.