blob: 08b0d2a96333d2e61f0497f6ba170571d37472fe [file] [log] [blame]
Zack Williamsd1ba6412019-08-28 11:18:32 -07001---
Joey Armstrong56fdfec2024-03-01 13:43:36 -05002
3# -----------------------------------------------------------------------
4# Copyright 2017-2024 Open Networking Foundation Contributors
5#
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http:#www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17# -----------------------------------------------------------------------
18# SPDX-FileCopyrightText: 2017-2024 Open Networking Foundation Contributors
19# SPDX-License-Identifier: Apache-2.0
20# -----------------------------------------------------------------------
21# Entropy: 0fcb5ffa-d1a4-11ee-be5e-9f44b7181764
22# -----------------------------------------------------------------------
23# Intent: Verification jobs for 'bbsim' repo
24# -----------------------------------------------------------------------
Zack Williamsd1ba6412019-08-28 11:18:32 -070025
26- project:
27 name: bbsim
28 project: '{name}'
Amol Jaikarbc9549a2023-01-27 16:53:06 -050029 dest-gopath: "github.com/opencord"
Zack Williamsd1ba6412019-08-28 11:18:32 -070030
31 jobs:
32 - 'verify-bbsim-jobs':
33 branch-regexp: '{all-branches-regexp}'
Eric Balleeb0dd82025-08-07 15:06:12 -070034 - 'verify-bbsim-jobs-voltha-2.14':
35 name-extension: '-voltha-2.14'
36 override-branch: 'voltha-2.14'
37 branch-regexp: '^voltha-2.14$'
Matteo Scandolo42f6e572021-01-25 15:11:34 -080038 - 'verify-bbsim-jobs-master':
39 branch-regexp: '^master$'
Zack Williamsd1ba6412019-08-28 11:18:32 -070040 - 'publish-bbsim-jobs':
41 branch-regexp: '{all-branches-regexp}'
42
43- job-group:
44 name: 'verify-bbsim-jobs'
45 jobs:
46 - 'verify-licensed'
Zack Williamsd1ba6412019-08-28 11:18:32 -070047 - 'make-unit-test':
Joey Armstrongc5194c42024-07-23 15:31:18 -040048 # build-node: 'ubuntu18.04-basebuild-4c-8g'
Joey Armstrong6fb53fb2024-08-27 16:44:29 -040049 build-node: 'ubuntu18.04-basebuild-8c-15g'
Zack Williamsd1ba6412019-08-28 11:18:32 -070050 dest-gopath: "github.com/opencord"
Shrey Baidaa897cd2020-07-22 11:26:47 -040051 unit-test-targets: 'lint sca test'
Joey Armstrong5226fb22023-02-02 18:16:07 -050052 unit-test-keep-going: 'false'
Matteo Scandolo42f6e572021-01-25 15:11:34 -080053
54- job-group:
Joey Armstrong0eb8bd82023-07-10 13:26:25 -040055 name: 'verify-bbsim-jobs-master'
Matteo Scandolo42f6e572021-01-25 15:11:34 -080056 jobs:
Andy Baviera6f8e482019-10-24 08:22:30 -070057 - 'voltha-patch-test':
Joey Armstrong0eb8bd82023-07-10 13:26:25 -040058 extraHelmFlags: '--set global.image_tag=master --set onos-classic.image.tag=master'
59 testTargets: |
60 - target: sanity-bbsim-att
61 workflow: att
62 flags: ""
63 teardown: true
64 logging: true
65 - target: sanity-bbsim-dt
66 workflow: dt
67 flags: ""
68 teardown: true
69 logging: true
70 - target: sanity-bbsim-tt
71 workflow: tt
72 flags: ""
73 teardown: true
74 logging: true
75
76- job-group:
Eric Balleeb0dd82025-08-07 15:06:12 -070077 name: 'verify-bbsim-jobs-voltha-2.14'
Eric Ball0d5a51a2025-01-22 16:55:16 -080078 jobs:
79 - 'voltha-patch-test':
80 pipeline-script: 'voltha/bbsim-tests.groovy'
Eric Balleeb0dd82025-08-07 15:06:12 -070081 pipeline-branch: 'voltha-2.14'
Eric Ball0d5a51a2025-01-22 16:55:16 -080082 extraHelmFlags: '--set global.image_tag=master --set onos-classic.image.tag=master'
83 testTargets: |
84 - target: sanity-bbsim-dt
85 workflow: dt
86 flags: ""
87 teardown: true
88 logging: true
89 - target: sanity-bbsim-tt
90 workflow: tt
91 flags: ""
92 teardown: true
93 logging: true
94
95- job-group:
Zack Williamsd1ba6412019-08-28 11:18:32 -070096 name: 'publish-bbsim-jobs'
97 jobs:
98 - 'docker-publish':
Eric Ball122196c2024-11-06 16:48:12 -080099 maintainers: "releng+voltha-build@linuxfoundation.org"
Zack Williamsd1ba6412019-08-28 11:18:32 -0700100 docker-repo: 'voltha'
Matteo Scandolo02108aa2022-06-30 17:31:22 -0700101 dependency-jobs: 'version-tag_wildcard'
Matteo Scandolob50daac2019-10-22 16:45:47 -0700102 - 'github-release':
Joey Armstrongca4cb462023-01-12 17:51:05 -0500103 dependency-jobs: 'version-tag_wildcard'
104 github-organization: 'opencord'
105 release-targets: 'release'
106 artifact-glob: 'release/*'
Joey Armstrongaf679da2023-01-31 14:22:41 -0500107
Joey Armstrong56fdfec2024-03-01 13:43:36 -0500108# [EOF]