Kailash Khalasi | 417d13f | 2018-04-17 12:38:48 -0700 | [diff] [blame] | 1 | --- |
| 2 | # POD Nightly Build Pipeline Jobs |
| 3 | |
| 4 | - test-pipe-job-boiler-plate: &test-pipe-job-boiler-plate |
| 5 | name: test-pipe-job-boiler-plate |
| 6 | |
| 7 | project-type: pipeline |
| 8 | |
| 9 | sandbox: true |
| 10 | |
| 11 | properties: |
| 12 | - cord-infra-properties: |
| 13 | build-days-to-keep: '{build-days-to-keep}' |
| 14 | artifact-num-to-keep: '{artifact-num-to-keep}' |
| 15 | |
Kailash Khalasi | 417d13f | 2018-04-17 12:38:48 -0700 | [diff] [blame] | 16 | |
| 17 | - job-template: |
Kailash Khalasi | e3b9148 | 2018-10-11 08:31:29 -0700 | [diff] [blame] | 18 | name: 'build_{profile}_{config-pod}_{branch}_manual' |
Suchitra Vemuri | 2c8ec0b | 2018-05-07 13:35:54 -0700 | [diff] [blame] | 19 | id: build_pod_manual |
| 20 | description: | |
| 21 | <!-- Managed by Jenkins Job Builder --> |
Kailash Khalasi | 2eacfc5 | 2018-08-29 09:03:21 -0700 | [diff] [blame] | 22 | Manual Build on POD {config-pod} using {Jenkinsfile} <br /><br /> |
hwchiu | e3815ab | 2019-10-17 15:06:25 -0700 | [diff] [blame] | 23 | Created from job-template {id} from ci-management/jjb/cord-test/nightly-build-pipeline.yaml <br /> |
Suchitra Vemuri | 2c8ec0b | 2018-05-07 13:35:54 -0700 | [diff] [blame] | 24 | Created by QA (Suchitra Vemuri - suchitra@opennetworking.org ) <br /> |
| 25 | Copyright (c) 2018 Open Networking Foundation (ONF) |
| 26 | |
| 27 | <<: *test-pipe-job-boiler-plate |
| 28 | |
| 29 | parameters: |
| 30 | - string: |
Zack Williams | 8ef7981 | 2019-10-29 11:09:18 -0700 | [diff] [blame] | 31 | name: buildNode |
| 32 | default: '{build-node}' |
| 33 | description: 'Name of the Jenkins executor node to run the job on' |
| 34 | |
| 35 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 36 | name: TestNodeName |
Zack Williams | 8ef7981 | 2019-10-29 11:09:18 -0700 | [diff] [blame] | 37 | default: '{build-node}' |
| 38 | description: 'DEPRECATED - use buildNode instead' |
Suchitra Vemuri | 2c8ec0b | 2018-05-07 13:35:54 -0700 | [diff] [blame] | 39 | |
| 40 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 41 | name: cordRepoUrl |
| 42 | default: '{gerrit-server-url}' |
| 43 | description: 'The URL of the CORD Project repository' |
Suchitra Vemuri | 2c8ec0b | 2018-05-07 13:35:54 -0700 | [diff] [blame] | 44 | |
| 45 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 46 | name: configBaseDir |
| 47 | default: 'pod-configs' |
| 48 | description: 'The directory inside the POD configs repository' |
Suchitra Vemuri | 2c8ec0b | 2018-05-07 13:35:54 -0700 | [diff] [blame] | 49 | |
| 50 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 51 | name: configDeploymentDir |
| 52 | default: 'deployment-configs' |
| 53 | description: 'The deployment configs folder' |
Kailash Khalasi | 2eacfc5 | 2018-08-29 09:03:21 -0700 | [diff] [blame] | 54 | |
| 55 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 56 | name: configKubernetesDir |
| 57 | default: 'kubernetes-configs' |
| 58 | description: 'The kubernetes config folder' |
Kailash Khalasi | 2eacfc5 | 2018-08-29 09:03:21 -0700 | [diff] [blame] | 59 | |
| 60 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 61 | name: configToscaDir |
| 62 | default: 'tosca-configs' |
| 63 | description: 'The tosca config folder' |
Kailash Khalasi | 619e688 | 2018-09-13 13:15:37 -0700 | [diff] [blame] | 64 | |
| 65 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 66 | name: configFileName |
| 67 | default: '{config-pod}' |
| 68 | description: 'The config file' |
Kailash Khalasi | 2eacfc5 | 2018-08-29 09:03:21 -0700 | [diff] [blame] | 69 | |
| 70 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 71 | name: oltDebVersion |
| 72 | default: '{oltDebVersion}' |
| 73 | description: 'OLT Software version to install' |
Suchitra Vemuri | 2c8ec0b | 2018-05-07 13:35:54 -0700 | [diff] [blame] | 74 | |
| 75 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 76 | name: branch |
| 77 | default: '{branch}' |
Suchitra Vemuri | 2c8ec0b | 2018-05-07 13:35:54 -0700 | [diff] [blame] | 78 | |
Kailash Khalasi | 9559f36 | 2018-09-14 13:53:28 -0700 | [diff] [blame] | 79 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 80 | name: helmRepoUrl |
| 81 | default: 'https://charts.opencord.org' |
| 82 | description: 'URL where helm-charts are published' |
Kailash | 876b901 | 2019-03-13 13:22:34 -0700 | [diff] [blame] | 83 | |
| 84 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 85 | name: profile |
| 86 | default: '{profile}' |
| 87 | description: 'Profile in which this job installs' |
Kailash Khalasi | 9559f36 | 2018-09-14 13:53:28 -0700 | [diff] [blame] | 88 | |
Kailash | dee47a0 | 2018-11-29 08:46:32 -0800 | [diff] [blame] | 89 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 90 | name: notificationEmail |
| 91 | default: 'kailash@opennetworking.org, you@opennetworking.org, suchitra@opennetworking.org' |
| 92 | description: '' |
Kailash | dee47a0 | 2018-11-29 08:46:32 -0800 | [diff] [blame] | 93 | |
Kailash Khalasi | ce9eaec | 2018-09-14 12:01:56 -0700 | [diff] [blame] | 94 | - bool: |
Matteo Scandolo | 3812736 | 2019-04-16 14:14:22 -0700 | [diff] [blame] | 95 | name: installMonitoringAndLogging |
| 96 | default: false |
| 97 | description: "Wether to install prometheus and Elk-stack" |
| 98 | |
| 99 | - bool: |
Kailash Khalasi | ce9eaec | 2018-09-14 12:01:56 -0700 | [diff] [blame] | 100 | name: configurePod |
| 101 | default: true |
| 102 | description: "Configure POD via TOSCA post build" |
| 103 | |
Kailash | dee47a0 | 2018-11-29 08:46:32 -0800 | [diff] [blame] | 104 | - bool: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 105 | name: reinstallOlt |
| 106 | default: true |
| 107 | description: "Re-install olt software bringing up CORD" |
Suchitra Vemuri | 2c8ec0b | 2018-05-07 13:35:54 -0700 | [diff] [blame] | 108 | |
Matteo Scandolo | fe69a8c | 2018-11-27 11:50:06 -0800 | [diff] [blame] | 109 | - bool: |
| 110 | name: installBBSim |
| 111 | default: false |
| 112 | description: "Install the BBSim container" |
| 113 | |
| 114 | - string: |
| 115 | name: onuNumber |
| 116 | default: '16' |
| 117 | description: "Onus per PonPort" |
| 118 | |
Suchitra Vemuri | 2c8ec0b | 2018-05-07 13:35:54 -0700 | [diff] [blame] | 119 | concurrent: true |
| 120 | |
| 121 | pipeline-scm: |
| 122 | script-path: '{Jenkinsfile}' |
| 123 | scm: |
| 124 | - git: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 125 | url: '{gerrit-server-url}/{test-repo}' |
| 126 | branches: |
| 127 | - '{branch}' |
Suchitra Vemuri | 2c8ec0b | 2018-05-07 13:35:54 -0700 | [diff] [blame] | 128 | |
| 129 | - job-template: |
Kailash Khalasi | 9559f36 | 2018-09-14 13:53:28 -0700 | [diff] [blame] | 130 | name: 'build_{profile}_{config-pod}_{branch}' |
Kailash Khalasi | 2eacfc5 | 2018-08-29 09:03:21 -0700 | [diff] [blame] | 131 | id: build_pod_timer |
Suchitra Vemuri | 2c8ec0b | 2018-05-07 13:35:54 -0700 | [diff] [blame] | 132 | description: | |
| 133 | <!-- Managed by Jenkins Job Builder --> |
Kailash Khalasi | 2eacfc5 | 2018-08-29 09:03:21 -0700 | [diff] [blame] | 134 | Nightly Kubernetes tests on {config-pod} <br /><br /> |
Suchitra Vemuri | 917aa61 | 2019-09-23 19:35:31 -0700 | [diff] [blame] | 135 | Created from job-template {id} from ci-management/jjb/cord-test/nightly-build-pipeline.yaml <br /> |
Suchitra Vemuri | cbb295e | 2018-06-01 18:48:30 -0700 | [diff] [blame] | 136 | Created by Suchitra Vemuri, suchitra@opennetworking.org <br /> |
| 137 | Copyright (c) 2017 Open Networking Foundation (ONF) |
Kailash | 85b4037 | 2019-08-28 08:51:23 -0700 | [diff] [blame] | 138 | disabled: false |
Suchitra Vemuri | cbb295e | 2018-06-01 18:48:30 -0700 | [diff] [blame] | 139 | |
| 140 | <<: *test-pipe-job-boiler-plate |
| 141 | |
| 142 | parameters: |
| 143 | - string: |
Zack Williams | 8ef7981 | 2019-10-29 11:09:18 -0700 | [diff] [blame] | 144 | name: buildNode |
| 145 | default: '{build-node}' |
| 146 | description: 'Name of the Jenkins executor node to run the job on' |
| 147 | |
| 148 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 149 | name: TestNodeName |
Zack Williams | 8ef7981 | 2019-10-29 11:09:18 -0700 | [diff] [blame] | 150 | default: '{build-node}' |
| 151 | description: 'DEPRECATED - use buildNode instead' |
Suchitra Vemuri | cbb295e | 2018-06-01 18:48:30 -0700 | [diff] [blame] | 152 | |
| 153 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 154 | name: cordRepoUrl |
| 155 | default: '{gerrit-server-url}' |
| 156 | description: 'The URL of the CORD Project repository' |
Suchitra Vemuri | cbb295e | 2018-06-01 18:48:30 -0700 | [diff] [blame] | 157 | |
| 158 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 159 | name: configBaseDir |
| 160 | default: 'pod-configs' |
| 161 | description: 'The directory inside the POD configs repository' |
Suchitra Vemuri | cbb295e | 2018-06-01 18:48:30 -0700 | [diff] [blame] | 162 | |
| 163 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 164 | name: configDeploymentDir |
| 165 | default: 'deployment-configs' |
| 166 | description: 'The deployment configs folder' |
Kailash Khalasi | 2eacfc5 | 2018-08-29 09:03:21 -0700 | [diff] [blame] | 167 | |
| 168 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 169 | name: configKubernetesDir |
| 170 | default: 'kubernetes-configs' |
| 171 | description: 'The kubernetes config folder' |
Kailash Khalasi | 2eacfc5 | 2018-08-29 09:03:21 -0700 | [diff] [blame] | 172 | |
| 173 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 174 | name: configToscaDir |
| 175 | default: 'tosca-configs' |
| 176 | description: 'The tosca config folder' |
Kailash Khalasi | 619e688 | 2018-09-13 13:15:37 -0700 | [diff] [blame] | 177 | |
| 178 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 179 | name: configFileName |
| 180 | default: '{config-pod}' |
| 181 | description: 'The config file' |
Suchitra Vemuri | cbb295e | 2018-06-01 18:48:30 -0700 | [diff] [blame] | 182 | |
| 183 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 184 | name: oltDebVersion |
| 185 | default: '{oltDebVersion}' |
| 186 | description: 'OLT Software version to install' |
Kailash Khalasi | d9e6aff | 2018-08-27 15:10:16 -0700 | [diff] [blame] | 187 | |
| 188 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 189 | name: branch |
| 190 | default: '{branch}' |
Suchitra Vemuri | cbb295e | 2018-06-01 18:48:30 -0700 | [diff] [blame] | 191 | |
| 192 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 193 | name: helmRepoUrl |
| 194 | default: 'https://charts.opencord.org' |
| 195 | description: 'URL where helm-charts are published' |
Kailash | 4c745a1 | 2019-03-15 11:32:07 -0700 | [diff] [blame] | 196 | |
| 197 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 198 | name: profile |
| 199 | default: '{profile}' |
| 200 | description: 'Profile in which this job installs' |
Suchitra Vemuri | cbb295e | 2018-06-01 18:48:30 -0700 | [diff] [blame] | 201 | |
Kailash Khalasi | ce9eaec | 2018-09-14 12:01:56 -0700 | [diff] [blame] | 202 | - bool: |
| 203 | name: configurePod |
| 204 | default: true |
| 205 | description: "Configure POD via TOSCA post build" |
| 206 | |
Kailash | dee47a0 | 2018-11-29 08:46:32 -0800 | [diff] [blame] | 207 | - bool: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 208 | name: reinstallOlt |
| 209 | default: true |
| 210 | description: "Re-install olt software bringing up CORD" |
Kailash | dee47a0 | 2018-11-29 08:46:32 -0800 | [diff] [blame] | 211 | |
| 212 | - bool: |
| 213 | name: installBBSim |
| 214 | default: false |
| 215 | description: "Install the BBSim container" |
| 216 | |
| 217 | - string: |
| 218 | name: onuNumber |
| 219 | default: '16' |
| 220 | description: "Onus per PonPort" |
| 221 | |
Kailash Khalasi | 9559f36 | 2018-09-14 13:53:28 -0700 | [diff] [blame] | 222 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 223 | name: notificationEmail |
| 224 | default: 'kailash@opennetworking.org, you@opennetworking.org, suchitra@opennetworking.org' |
| 225 | description: '' |
Kailash Khalasi | 9559f36 | 2018-09-14 13:53:28 -0700 | [diff] [blame] | 226 | |
Suchitra Vemuri | cbb295e | 2018-06-01 18:48:30 -0700 | [diff] [blame] | 227 | concurrent: true |
| 228 | |
| 229 | pipeline-scm: |
| 230 | script-path: '{Jenkinsfile}' |
| 231 | scm: |
| 232 | - git: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 233 | url: '{gerrit-server-url}/{test-repo}' |
| 234 | branches: |
| 235 | - '{branch}' |
Suchitra Vemuri | cbb295e | 2018-06-01 18:48:30 -0700 | [diff] [blame] | 236 | |
| 237 | triggers: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 238 | - timed: | |
Suchitra Vemuri | cbb295e | 2018-06-01 18:48:30 -0700 | [diff] [blame] | 239 | TZ=America/Los_Angeles |
Kailash Khalasi | acd7ea0 | 2018-09-28 13:36:47 -0700 | [diff] [blame] | 240 | H {time} * * * |
Kailash Khalasi | 9559f36 | 2018-09-14 13:53:28 -0700 | [diff] [blame] | 241 | |
| 242 | - job-template: |
| 243 | name: 'build_{profile}_{config-pod}_{branch}_test' |
| 244 | id: build_pod_test |
| 245 | description: | |
| 246 | <!-- Managed by Jenkins Job Builder --> |
| 247 | Post Tests on {config-pod} triggered by build_{config-pod}_{branch} <br /><br /> |
hwchiu | e3815ab | 2019-10-17 15:06:25 -0700 | [diff] [blame] | 248 | Created from job-template {id} from ci-management/jjb/cord-test/nightly-build-pipeline.yaml <br /> |
Kailash Khalasi | 9559f36 | 2018-09-14 13:53:28 -0700 | [diff] [blame] | 249 | Created by Kailash Khalasi - kailash@opennetworking.org <br /> |
| 250 | Copyright (c) 2017 Open Networking Foundation (ONF) |
| 251 | |
| 252 | <<: *test-pipe-job-boiler-plate |
| 253 | |
| 254 | parameters: |
| 255 | - string: |
Zack Williams | 8ef7981 | 2019-10-29 11:09:18 -0700 | [diff] [blame] | 256 | name: buildNode |
| 257 | default: '{build-node}' |
| 258 | description: 'Name of the Jenkins executor node to run the job on' |
| 259 | |
| 260 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 261 | name: TestNodeName |
Zack Williams | 8ef7981 | 2019-10-29 11:09:18 -0700 | [diff] [blame] | 262 | default: '{build-node}' |
| 263 | description: 'DEPRECATED - use buildNode instead' |
Kailash Khalasi | 9559f36 | 2018-09-14 13:53:28 -0700 | [diff] [blame] | 264 | |
| 265 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 266 | name: cordRepoUrl |
| 267 | default: '{gerrit-server-url}' |
| 268 | description: 'The URL of the CORD Project repository' |
Kailash Khalasi | 9559f36 | 2018-09-14 13:53:28 -0700 | [diff] [blame] | 269 | |
| 270 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 271 | name: configBaseDir |
| 272 | default: 'pod-configs' |
| 273 | description: 'The directory inside the POD configs repository' |
Kailash Khalasi | 9559f36 | 2018-09-14 13:53:28 -0700 | [diff] [blame] | 274 | |
| 275 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 276 | name: configDeploymentDir |
| 277 | default: 'deployment-configs' |
| 278 | description: 'The deployment configs folder' |
Kailash Khalasi | 9559f36 | 2018-09-14 13:53:28 -0700 | [diff] [blame] | 279 | |
| 280 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 281 | name: configKubernetesDir |
| 282 | default: 'kubernetes-configs' |
| 283 | description: 'The kubernetes config folder' |
Kailash Khalasi | 9559f36 | 2018-09-14 13:53:28 -0700 | [diff] [blame] | 284 | |
| 285 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 286 | name: configToscaDir |
| 287 | default: 'tosca-configs' |
| 288 | description: 'The tosca config folder' |
Kailash Khalasi | 9559f36 | 2018-09-14 13:53:28 -0700 | [diff] [blame] | 289 | |
| 290 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 291 | name: configFileName |
| 292 | default: '{config-pod}' |
| 293 | description: 'The config file' |
Kailash Khalasi | 9559f36 | 2018-09-14 13:53:28 -0700 | [diff] [blame] | 294 | |
| 295 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 296 | name: branch |
| 297 | default: '{branch}' |
Kailash Khalasi | 9559f36 | 2018-09-14 13:53:28 -0700 | [diff] [blame] | 298 | |
| 299 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 300 | name: notificationEmail |
| 301 | default: 'kailash@opennetworking.org, you@opennetworking.org, suchitra@opennetworking.org' |
| 302 | description: '' |
Kailash Khalasi | 9559f36 | 2018-09-14 13:53:28 -0700 | [diff] [blame] | 303 | |
| 304 | concurrent: true |
| 305 | |
| 306 | pipeline-scm: |
| 307 | script-path: '{Jenkinsfile}' |
| 308 | scm: |
| 309 | - git: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 310 | url: '{gerrit-server-url}/{test-repo}' |
| 311 | branches: |
| 312 | - '{branch}' |
Kailash Khalasi | 9559f36 | 2018-09-14 13:53:28 -0700 | [diff] [blame] | 313 | |
| 314 | triggers: |
| 315 | - reverse: |
| 316 | jobs: 'build_{profile}_{config-pod}_{branch}' |
| 317 | result: 'success' |
Kailash Khalasi | 4de32fe | 2018-11-12 13:31:39 -0800 | [diff] [blame] | 318 | |
| 319 | - job-template: |
| 320 | name: 'build_{profile}_{config-pod}_{branch}_post_actions' |
| 321 | id: post_build_actions |
| 322 | description: | |
| 323 | <!-- Managed by Jenkins Job Builder --> |
| 324 | Post Actions on {config-pod} triggered by build_{config-pod}_{branch}. Service ofagent restart required <br /><br /> |
hwchiu | e3815ab | 2019-10-17 15:06:25 -0700 | [diff] [blame] | 325 | Created from job-template {id} from ci-management/jjb/cord-test/nightly-build-pipeline.yaml <br /> |
Kailash Khalasi | 4de32fe | 2018-11-12 13:31:39 -0800 | [diff] [blame] | 326 | Created by Kailash Khalasi - kailash@opennetworking.org <br /> |
| 327 | Copyright (c) 2017 Open Networking Foundation (ONF) |
| 328 | |
| 329 | <<: *test-pipe-job-boiler-plate |
| 330 | |
| 331 | parameters: |
| 332 | - string: |
Zack Williams | 8ef7981 | 2019-10-29 11:09:18 -0700 | [diff] [blame] | 333 | name: buildNode |
| 334 | default: '{build-node}' |
| 335 | description: 'Name of the Jenkins executor node to run the job on' |
| 336 | |
| 337 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 338 | name: TestNodeName |
Zack Williams | 8ef7981 | 2019-10-29 11:09:18 -0700 | [diff] [blame] | 339 | default: '{build-node}' |
| 340 | description: 'DEPRECATED - use buildNode instead' |
Kailash Khalasi | 4de32fe | 2018-11-12 13:31:39 -0800 | [diff] [blame] | 341 | |
| 342 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 343 | name: cordRepoUrl |
| 344 | default: '{gerrit-server-url}' |
| 345 | description: 'The URL of the CORD Project repository' |
Kailash Khalasi | 4de32fe | 2018-11-12 13:31:39 -0800 | [diff] [blame] | 346 | |
| 347 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 348 | name: configBaseDir |
| 349 | default: 'pod-configs' |
| 350 | description: 'The directory inside the POD configs repository' |
Kailash Khalasi | 4de32fe | 2018-11-12 13:31:39 -0800 | [diff] [blame] | 351 | |
| 352 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 353 | name: configDeploymentDir |
| 354 | default: 'deployment-configs' |
| 355 | description: 'The deployment configs folder' |
Kailash Khalasi | 4de32fe | 2018-11-12 13:31:39 -0800 | [diff] [blame] | 356 | |
| 357 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 358 | name: configKubernetesDir |
| 359 | default: 'kubernetes-configs' |
| 360 | description: 'The kubernetes config folder' |
Kailash | c7d9e4e | 2018-11-13 14:48:23 -0800 | [diff] [blame] | 361 | |
| 362 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 363 | name: configFileName |
| 364 | default: '{config-pod}' |
| 365 | description: 'The config file' |
Kailash Khalasi | 4de32fe | 2018-11-12 13:31:39 -0800 | [diff] [blame] | 366 | |
| 367 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 368 | name: branch |
| 369 | default: '{branch}' |
Kailash Khalasi | 4de32fe | 2018-11-12 13:31:39 -0800 | [diff] [blame] | 370 | |
| 371 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 372 | name: notificationEmail |
| 373 | default: 'kailash@opennetworking.org, you@opennetworking.org, suchitra@opennetworking.org' |
| 374 | description: '' |
Kailash Khalasi | 4de32fe | 2018-11-12 13:31:39 -0800 | [diff] [blame] | 375 | |
| 376 | concurrent: true |
| 377 | |
| 378 | pipeline-scm: |
| 379 | script-path: '{Jenkinsfile}' |
| 380 | scm: |
| 381 | - git: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 382 | url: '{gerrit-server-url}/cord-tester' |
| 383 | branches: |
| 384 | - '{branch}' |
Kailash Khalasi | 4de32fe | 2018-11-12 13:31:39 -0800 | [diff] [blame] | 385 | |
| 386 | triggers: |
| 387 | - reverse: |
| 388 | jobs: 'build_{profile}_{config-pod}_{branch}' |
| 389 | result: 'failure' |
Kailash | d1963d1 | 2018-12-17 15:11:01 -0800 | [diff] [blame] | 390 | |
Kailash | d1963d1 | 2018-12-17 15:11:01 -0800 | [diff] [blame] | 391 | - job-template: |
| 392 | name: 'build_{config-pod}_seba_release_{release}' |
| 393 | id: build_pod_manual_release |
| 394 | description: | |
| 395 | <!-- Managed by Jenkins Job Builder --> |
| 396 | Manual Build on POD {config-pod} using {Jenkinsfile} <br /><br /> |
hwchiu | e3815ab | 2019-10-17 15:06:25 -0700 | [diff] [blame] | 397 | Created from job-template {id} from ci-management/jjb/cord-test/nightly-build-pipeline.yaml <br /> |
Kailash | d1963d1 | 2018-12-17 15:11:01 -0800 | [diff] [blame] | 398 | Created by QA (Suchitra Vemuri - suchitra@opennetworking.org ) <br /> |
| 399 | Copyright (c) 2018 Open Networking Foundation (ONF) |
| 400 | |
| 401 | <<: *test-pipe-job-boiler-plate |
| 402 | |
| 403 | parameters: |
| 404 | - string: |
Zack Williams | 8ef7981 | 2019-10-29 11:09:18 -0700 | [diff] [blame] | 405 | name: buildNode |
| 406 | default: '{build-node}' |
| 407 | description: 'Name of the Jenkins executor node to run the job on' |
| 408 | |
| 409 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 410 | name: TestNodeName |
Zack Williams | 8ef7981 | 2019-10-29 11:09:18 -0700 | [diff] [blame] | 411 | default: '{build-node}' |
| 412 | description: 'DEPRECATED - use buildNode instead' |
Kailash | d1963d1 | 2018-12-17 15:11:01 -0800 | [diff] [blame] | 413 | |
| 414 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 415 | name: cordRepoUrl |
| 416 | default: '{gerrit-server-url}' |
| 417 | description: 'The URL of the CORD Project repository' |
Kailash | d1963d1 | 2018-12-17 15:11:01 -0800 | [diff] [blame] | 418 | |
| 419 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 420 | name: configBaseDir |
| 421 | default: 'pod-configs' |
| 422 | description: 'The directory inside the POD configs repository' |
Kailash | d1963d1 | 2018-12-17 15:11:01 -0800 | [diff] [blame] | 423 | |
| 424 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 425 | name: configDeploymentDir |
| 426 | default: 'deployment-configs' |
| 427 | description: 'The deployment configs folder' |
Kailash | d1963d1 | 2018-12-17 15:11:01 -0800 | [diff] [blame] | 428 | |
| 429 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 430 | name: configKubernetesDir |
| 431 | default: 'kubernetes-configs' |
| 432 | description: 'The kubernetes config folder' |
Kailash | d1963d1 | 2018-12-17 15:11:01 -0800 | [diff] [blame] | 433 | |
| 434 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 435 | name: configToscaDir |
| 436 | default: 'tosca-configs' |
| 437 | description: 'The tosca config folder' |
Kailash | d1963d1 | 2018-12-17 15:11:01 -0800 | [diff] [blame] | 438 | |
| 439 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 440 | name: configFileName |
| 441 | default: '{config-pod}' |
| 442 | description: 'The config file' |
Kailash | d1963d1 | 2018-12-17 15:11:01 -0800 | [diff] [blame] | 443 | |
| 444 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 445 | name: oltDebVersion |
| 446 | default: '{oltDebVersion}' |
| 447 | description: 'OLT Software version to install' |
Kailash | d1963d1 | 2018-12-17 15:11:01 -0800 | [diff] [blame] | 448 | |
| 449 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 450 | name: branch |
| 451 | default: '{branch}' |
Kailash | d1963d1 | 2018-12-17 15:11:01 -0800 | [diff] [blame] | 452 | |
| 453 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 454 | name: notificationEmail |
| 455 | default: 'kailash@opennetworking.org, you@opennetworking.org, suchitra@opennetworking.org' |
| 456 | description: '' |
Kailash | d1963d1 | 2018-12-17 15:11:01 -0800 | [diff] [blame] | 457 | |
| 458 | - bool: |
| 459 | name: configurePod |
| 460 | default: true |
| 461 | description: "Configure POD via TOSCA post build" |
| 462 | |
| 463 | - bool: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 464 | name: reinstallOlt |
| 465 | default: true |
| 466 | description: "Re-install olt software bringing up CORD" |
Kailash | d1963d1 | 2018-12-17 15:11:01 -0800 | [diff] [blame] | 467 | |
| 468 | - bool: |
| 469 | name: installBBSim |
| 470 | default: false |
| 471 | description: "Install the BBSim container" |
| 472 | |
| 473 | - string: |
| 474 | name: onuNumber |
| 475 | default: '16' |
| 476 | description: "Onus per PonPort" |
| 477 | |
| 478 | concurrent: true |
| 479 | |
| 480 | pipeline-scm: |
| 481 | script-path: '{Jenkinsfile}' |
| 482 | scm: |
| 483 | - git: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 484 | url: '{gerrit-server-url}/cord-tester' |
| 485 | branches: |
| 486 | - '{branch}' |
Kailash | d1963d1 | 2018-12-17 15:11:01 -0800 | [diff] [blame] | 487 | |
| 488 | - job-template: |
| 489 | name: 'build_{config-pod}_seba_release_{release}' |
| 490 | id: build_pod_release |
| 491 | description: | |
| 492 | <!-- Managed by Jenkins Job Builder --> |
| 493 | Manual Build on POD {config-pod} using {Jenkinsfile} <br /><br /> |
hwchiu | e3815ab | 2019-10-17 15:06:25 -0700 | [diff] [blame] | 494 | Created from job-template {id} from ci-management/jjb/cord-test/nightly-build-pipeline.yaml <br /> |
Kailash | d1963d1 | 2018-12-17 15:11:01 -0800 | [diff] [blame] | 495 | Created by QA (Suchitra Vemuri - suchitra@opennetworking.org ) <br /> |
| 496 | Copyright (c) 2018 Open Networking Foundation (ONF) |
| 497 | |
| 498 | <<: *test-pipe-job-boiler-plate |
| 499 | |
| 500 | parameters: |
| 501 | - string: |
Zack Williams | 8ef7981 | 2019-10-29 11:09:18 -0700 | [diff] [blame] | 502 | name: buildNode |
| 503 | default: '{build-node}' |
| 504 | description: 'Name of the Jenkins executor node to run the job on' |
| 505 | |
| 506 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 507 | name: TestNodeName |
Zack Williams | 8ef7981 | 2019-10-29 11:09:18 -0700 | [diff] [blame] | 508 | default: '{build-node}' |
| 509 | description: 'DEPRECATED - use buildNode instead' |
Kailash | d1963d1 | 2018-12-17 15:11:01 -0800 | [diff] [blame] | 510 | |
| 511 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 512 | name: cordRepoUrl |
| 513 | default: '{gerrit-server-url}' |
| 514 | description: 'The URL of the CORD Project repository' |
Kailash | d1963d1 | 2018-12-17 15:11:01 -0800 | [diff] [blame] | 515 | |
| 516 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 517 | name: configBaseDir |
| 518 | default: 'pod-configs' |
| 519 | description: 'The directory inside the POD configs repository' |
Kailash | d1963d1 | 2018-12-17 15:11:01 -0800 | [diff] [blame] | 520 | |
| 521 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 522 | name: configDeploymentDir |
| 523 | default: 'deployment-configs' |
| 524 | description: 'The deployment configs folder' |
Kailash | d1963d1 | 2018-12-17 15:11:01 -0800 | [diff] [blame] | 525 | |
| 526 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 527 | name: configKubernetesDir |
| 528 | default: 'kubernetes-configs' |
| 529 | description: 'The kubernetes config folder' |
Kailash | d1963d1 | 2018-12-17 15:11:01 -0800 | [diff] [blame] | 530 | |
| 531 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 532 | name: configToscaDir |
| 533 | default: 'tosca-configs' |
| 534 | description: 'The tosca config folder' |
Kailash | d1963d1 | 2018-12-17 15:11:01 -0800 | [diff] [blame] | 535 | |
| 536 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 537 | name: configFileName |
| 538 | default: '{config-pod}' |
| 539 | description: 'The config file' |
Kailash | d1963d1 | 2018-12-17 15:11:01 -0800 | [diff] [blame] | 540 | |
| 541 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 542 | name: oltDebVersion |
| 543 | default: '{oltDebVersion}' |
| 544 | description: 'OLT Software version to install' |
Kailash | d1963d1 | 2018-12-17 15:11:01 -0800 | [diff] [blame] | 545 | |
| 546 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 547 | name: helmRepoUrl |
| 548 | default: 'https://charts.opencord.org' |
| 549 | description: 'URL where helm-charts are published' |
Kailash | 5f1dd1b | 2019-07-10 10:57:32 -0700 | [diff] [blame] | 550 | |
| 551 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 552 | name: branch |
| 553 | default: '{branch}' |
Kailash | d1963d1 | 2018-12-17 15:11:01 -0800 | [diff] [blame] | 554 | |
| 555 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 556 | name: notificationEmail |
| 557 | default: 'kailash@opennetworking.org, you@opennetworking.org, suchitra@opennetworking.org' |
| 558 | description: '' |
Kailash | d1963d1 | 2018-12-17 15:11:01 -0800 | [diff] [blame] | 559 | |
| 560 | - bool: |
| 561 | name: configurePod |
| 562 | default: true |
| 563 | description: "Configure POD via TOSCA post build" |
| 564 | |
| 565 | - bool: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 566 | name: reinstallOlt |
| 567 | default: true |
| 568 | description: "Re-install olt software bringing up CORD" |
Kailash | d1963d1 | 2018-12-17 15:11:01 -0800 | [diff] [blame] | 569 | |
| 570 | - bool: |
| 571 | name: installBBSim |
| 572 | default: false |
| 573 | description: "Install the BBSim container" |
| 574 | |
| 575 | - string: |
| 576 | name: onuNumber |
| 577 | default: '16' |
| 578 | description: "Onus per PonPort" |
| 579 | |
| 580 | concurrent: true |
| 581 | |
| 582 | pipeline-scm: |
| 583 | script-path: '{Jenkinsfile}' |
| 584 | scm: |
| 585 | - git: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 586 | url: '{gerrit-server-url}/cord-tester' |
| 587 | branches: |
| 588 | - '{branch}' |
Kailash | d1963d1 | 2018-12-17 15:11:01 -0800 | [diff] [blame] | 589 | |
| 590 | triggers: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 591 | - timed: | |
Kailash | d1963d1 | 2018-12-17 15:11:01 -0800 | [diff] [blame] | 592 | TZ=America/Los_Angeles |
| 593 | H {time} * * * |
| 594 | |
| 595 | - job-template: |
| 596 | name: 'build_{config-pod}_seba_release_{release}_test' |
| 597 | id: build_pod_release_test |
| 598 | description: | |
| 599 | <!-- Managed by Jenkins Job Builder --> |
| 600 | Post Tests on {config-pod} triggered by build_{config-pod}_{branch} <br /><br /> |
hwchiu | e3815ab | 2019-10-17 15:06:25 -0700 | [diff] [blame] | 601 | Created from job-template {id} from ci-management/jjb/cord-test/nightly-build-pipeline.yaml <br /> |
Kailash | d1963d1 | 2018-12-17 15:11:01 -0800 | [diff] [blame] | 602 | Created by Kailash Khalasi - kailash@opennetworking.org <br /> |
| 603 | Copyright (c) 2017 Open Networking Foundation (ONF) |
| 604 | |
| 605 | <<: *test-pipe-job-boiler-plate |
| 606 | |
| 607 | parameters: |
| 608 | - string: |
Zack Williams | 8ef7981 | 2019-10-29 11:09:18 -0700 | [diff] [blame] | 609 | name: buildNode |
| 610 | default: '{build-node}' |
| 611 | description: 'Name of the Jenkins executor node to run the job on' |
| 612 | |
| 613 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 614 | name: TestNodeName |
Zack Williams | 8ef7981 | 2019-10-29 11:09:18 -0700 | [diff] [blame] | 615 | default: '{build-node}' |
| 616 | description: 'DEPRECATED - use buildNode instead' |
Kailash | d1963d1 | 2018-12-17 15:11:01 -0800 | [diff] [blame] | 617 | |
| 618 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 619 | name: cordRepoUrl |
| 620 | default: '{gerrit-server-url}' |
| 621 | description: 'The URL of the CORD Project repository' |
Kailash | d1963d1 | 2018-12-17 15:11:01 -0800 | [diff] [blame] | 622 | |
| 623 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 624 | name: configBaseDir |
| 625 | default: 'pod-configs' |
| 626 | description: 'The directory inside the POD configs repository' |
Kailash | d1963d1 | 2018-12-17 15:11:01 -0800 | [diff] [blame] | 627 | |
| 628 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 629 | name: configDeploymentDir |
| 630 | default: 'deployment-configs' |
| 631 | description: 'The deployment configs folder' |
Kailash | d1963d1 | 2018-12-17 15:11:01 -0800 | [diff] [blame] | 632 | |
| 633 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 634 | name: configKubernetesDir |
| 635 | default: 'kubernetes-configs' |
| 636 | description: 'The kubernetes config folder' |
Kailash | d1963d1 | 2018-12-17 15:11:01 -0800 | [diff] [blame] | 637 | |
| 638 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 639 | name: configToscaDir |
| 640 | default: 'tosca-configs' |
| 641 | description: 'The tosca config folder' |
Kailash | d1963d1 | 2018-12-17 15:11:01 -0800 | [diff] [blame] | 642 | |
| 643 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 644 | name: configFileName |
| 645 | default: '{config-pod}' |
| 646 | description: 'The config file' |
Kailash | d1963d1 | 2018-12-17 15:11:01 -0800 | [diff] [blame] | 647 | |
| 648 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 649 | name: branch |
| 650 | default: '{branch}' |
Kailash | d1963d1 | 2018-12-17 15:11:01 -0800 | [diff] [blame] | 651 | |
| 652 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 653 | name: notificationEmail |
| 654 | default: 'kailash@opennetworking.org, you@opennetworking.org, suchitra@opennetworking.org' |
| 655 | description: '' |
Kailash | d1963d1 | 2018-12-17 15:11:01 -0800 | [diff] [blame] | 656 | |
| 657 | concurrent: true |
| 658 | |
| 659 | pipeline-scm: |
| 660 | script-path: '{Jenkinsfile}' |
| 661 | scm: |
| 662 | - git: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 663 | url: '{gerrit-server-url}/cord-tester' |
| 664 | branches: |
| 665 | - '{branch}' |
Kailash | d1963d1 | 2018-12-17 15:11:01 -0800 | [diff] [blame] | 666 | |
| 667 | triggers: |
| 668 | - reverse: |
| 669 | jobs: 'build_{config-pod}_seba_release_{release}' |
| 670 | result: 'success' |
Kailash | 5b1a161 | 2018-12-21 15:17:21 -0800 | [diff] [blame] | 671 | |
| 672 | |
| 673 | - job-template: |
| 674 | name: 'build_{config-pod}_seba_release_{release}_microcharts_test' |
| 675 | id: build_pod_release_test_microcharts |
| 676 | description: | |
| 677 | <!-- Managed by Jenkins Job Builder --> |
| 678 | Post Tests on {config-pod} triggered by build_{config-pod}_{branch} <br /><br /> |
hwchiu | e3815ab | 2019-10-17 15:06:25 -0700 | [diff] [blame] | 679 | Created from job-template {id} from ci-management/jjb/cord-test/nightly-build-pipeline.yaml <br /> |
Kailash | 5b1a161 | 2018-12-21 15:17:21 -0800 | [diff] [blame] | 680 | Created by Kailash Khalasi - kailash@opennetworking.org <br /> |
| 681 | Copyright (c) 2017 Open Networking Foundation (ONF) |
| 682 | |
| 683 | <<: *test-pipe-job-boiler-plate |
| 684 | |
| 685 | parameters: |
| 686 | - string: |
Zack Williams | 8ef7981 | 2019-10-29 11:09:18 -0700 | [diff] [blame] | 687 | name: buildNode |
| 688 | default: '{build-node}' |
| 689 | description: 'Name of the Jenkins executor node to run the job on' |
| 690 | |
| 691 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 692 | name: TestNodeName |
Zack Williams | 8ef7981 | 2019-10-29 11:09:18 -0700 | [diff] [blame] | 693 | default: '{build-node}' |
| 694 | description: 'DEPRECATED - use buildNode instead' |
Kailash | 5b1a161 | 2018-12-21 15:17:21 -0800 | [diff] [blame] | 695 | |
| 696 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 697 | name: cordRepoUrl |
| 698 | default: '{gerrit-server-url}' |
| 699 | description: 'The URL of the CORD Project repository' |
Kailash | 5b1a161 | 2018-12-21 15:17:21 -0800 | [diff] [blame] | 700 | |
| 701 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 702 | name: configBaseDir |
| 703 | default: 'pod-configs' |
| 704 | description: 'The directory inside the POD configs repository' |
Kailash | 5b1a161 | 2018-12-21 15:17:21 -0800 | [diff] [blame] | 705 | |
| 706 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 707 | name: configDeploymentDir |
| 708 | default: 'deployment-configs' |
| 709 | description: 'The deployment configs folder' |
Kailash | 5b1a161 | 2018-12-21 15:17:21 -0800 | [diff] [blame] | 710 | |
| 711 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 712 | name: configKubernetesDir |
| 713 | default: 'kubernetes-configs' |
| 714 | description: 'The kubernetes config folder' |
Kailash | 5b1a161 | 2018-12-21 15:17:21 -0800 | [diff] [blame] | 715 | |
| 716 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 717 | name: configToscaDir |
| 718 | default: 'tosca-configs' |
| 719 | description: 'The tosca config folder' |
Kailash | 5b1a161 | 2018-12-21 15:17:21 -0800 | [diff] [blame] | 720 | |
| 721 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 722 | name: configFileName |
| 723 | default: '{config-pod}' |
| 724 | description: 'The config file' |
Kailash | 5b1a161 | 2018-12-21 15:17:21 -0800 | [diff] [blame] | 725 | |
| 726 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 727 | name: branch |
| 728 | default: '{branch}' |
Kailash | 5b1a161 | 2018-12-21 15:17:21 -0800 | [diff] [blame] | 729 | |
| 730 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 731 | name: notificationEmail |
| 732 | default: 'kailash@opennetworking.org, you@opennetworking.org, suchitra@opennetworking.org' |
| 733 | description: '' |
Kailash | 5b1a161 | 2018-12-21 15:17:21 -0800 | [diff] [blame] | 734 | |
| 735 | concurrent: true |
| 736 | |
| 737 | pipeline-scm: |
| 738 | script-path: '{Jenkinsfile}' |
| 739 | scm: |
| 740 | - git: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 741 | url: '{gerrit-server-url}/cord-tester' |
| 742 | branches: |
| 743 | - '{branch}' |
Kailash | 5b1a161 | 2018-12-21 15:17:21 -0800 | [diff] [blame] | 744 | |
| 745 | triggers: |
| 746 | - reverse: |
| 747 | jobs: 'build_{config-pod}_seba_release_{release}_microcharts' |
| 748 | result: 'success' |
Kailash | c8c05d5 | 2019-01-15 20:01:11 -0800 | [diff] [blame] | 749 | |
| 750 | |
| 751 | - job-template: |
Kailash | d22f91f | 2019-02-14 08:52:52 -0800 | [diff] [blame] | 752 | name: 'build_{config-pod}' |
Kailash | c8c05d5 | 2019-01-15 20:01:11 -0800 | [diff] [blame] | 753 | id: build_mcord_pod_manual |
| 754 | description: | |
| 755 | <!-- Managed by Jenkins Job Builder --> |
| 756 | Manual Build on POD {config-pod} using {Jenkinsfile} <br /><br /> |
| 757 | Created from job-template {id} from ci-management/jjb/cord-test/nightly-build-pipeline.yaml <br /> |
| 758 | Created by QA (Kailash Khalasi - kailash@opennetworking.org ) <br /> |
| 759 | Copyright (c) 2019 Open Networking Foundation (ONF) |
| 760 | |
| 761 | <<: *test-pipe-job-boiler-plate |
| 762 | |
| 763 | parameters: |
| 764 | - string: |
Zack Williams | 8ef7981 | 2019-10-29 11:09:18 -0700 | [diff] [blame] | 765 | name: buildNode |
| 766 | default: '{build-node}' |
| 767 | description: 'Name of the Jenkins executor node to run the job on' |
| 768 | |
| 769 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 770 | name: TestNodeName |
Zack Williams | 8ef7981 | 2019-10-29 11:09:18 -0700 | [diff] [blame] | 771 | default: '{build-node}' |
| 772 | description: 'DEPRECATED - use buildNode instead' |
Kailash | c8c05d5 | 2019-01-15 20:01:11 -0800 | [diff] [blame] | 773 | |
| 774 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 775 | name: cordRepoUrl |
| 776 | default: '{gerrit-server-url}' |
| 777 | description: 'The URL of the CORD Project repository' |
Kailash | c8c05d5 | 2019-01-15 20:01:11 -0800 | [diff] [blame] | 778 | |
| 779 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 780 | name: configBaseDir |
| 781 | default: 'pod-configs' |
| 782 | description: 'The directory inside the POD configs repository' |
Kailash | c8c05d5 | 2019-01-15 20:01:11 -0800 | [diff] [blame] | 783 | |
| 784 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 785 | name: configDeploymentDir |
| 786 | default: 'deployment-configs' |
| 787 | description: 'The deployment configs folder' |
Kailash | c8c05d5 | 2019-01-15 20:01:11 -0800 | [diff] [blame] | 788 | |
| 789 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 790 | name: configKubernetesDir |
| 791 | default: 'kubernetes-configs' |
| 792 | description: 'The kubernetes config folder' |
Kailash | c8c05d5 | 2019-01-15 20:01:11 -0800 | [diff] [blame] | 793 | |
| 794 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 795 | name: configToscaDir |
| 796 | default: 'tosca-configs' |
| 797 | description: 'The tosca config folder' |
Kailash | c8c05d5 | 2019-01-15 20:01:11 -0800 | [diff] [blame] | 798 | |
| 799 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 800 | name: configFileName |
| 801 | default: '{config-pod}' |
| 802 | description: 'The config file' |
Kailash | c8c05d5 | 2019-01-15 20:01:11 -0800 | [diff] [blame] | 803 | |
| 804 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 805 | name: branch |
| 806 | default: '{branch}' |
Kailash | c8c05d5 | 2019-01-15 20:01:11 -0800 | [diff] [blame] | 807 | |
| 808 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 809 | name: profile |
| 810 | default: '{profile}' |
| 811 | description: 'Profile in which this job installs' |
Kailash | c8c05d5 | 2019-01-15 20:01:11 -0800 | [diff] [blame] | 812 | |
| 813 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 814 | name: notificationEmail |
| 815 | default: 'luca@opennetworking.org, teo@opennetworking.org, weiyu@opennetworking.org' |
| 816 | description: '' |
Kailash | c8c05d5 | 2019-01-15 20:01:11 -0800 | [diff] [blame] | 817 | |
| 818 | - bool: |
| 819 | name: configurePod |
Matteo Scandolo | a9b416e | 2019-01-24 15:21:07 -0800 | [diff] [blame] | 820 | default: true |
Kailash | c8c05d5 | 2019-01-15 20:01:11 -0800 | [diff] [blame] | 821 | description: "Configure POD via TOSCA post build" |
| 822 | |
Matteo Scandolo | a679189 | 2019-01-25 15:46:03 -0800 | [diff] [blame] | 823 | - bool: |
| 824 | name: installEpcControlPlane |
| 825 | default: true |
| 826 | description: "Install the EPC control plane" |
| 827 | |
Kailash | c8c05d5 | 2019-01-15 20:01:11 -0800 | [diff] [blame] | 828 | concurrent: true |
| 829 | |
| 830 | pipeline-scm: |
| 831 | script-path: '{Jenkinsfile}' |
| 832 | scm: |
| 833 | - git: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 834 | url: '{gerrit-server-url}/cord-tester' |
| 835 | branches: |
| 836 | - '{branch}' |
Suchitra Vemuri | 23b1979 | 2019-09-25 17:41:19 -0700 | [diff] [blame] | 837 | |
| 838 | - job-template: |
Suchitra Vemuri | e6dd15a | 2020-03-04 18:15:58 -0800 | [diff] [blame] | 839 | name: 'build_{config-pod}_{profile}{name-extension}_voltha_{release}' |
Suchitra Vemuri | 23b1979 | 2019-09-25 17:41:19 -0700 | [diff] [blame] | 840 | id: build_voltha_pod_release |
| 841 | description: | |
| 842 | <!-- Managed by Jenkins Job Builder --> |
| 843 | Manual Build on POD {config-pod} using {Jenkinsfile} <br /><br /> |
| 844 | Created from job-template {id} from ci-management/jjb/cord-test/nightly-build-pipeline.yaml <br /> |
| 845 | Created by QA (Suchitra Vemuri - suchitra@opennetworking.org ) <br /> |
| 846 | Copyright (c) 2018 Open Networking Foundation (ONF) |
| 847 | |
| 848 | <<: *test-pipe-job-boiler-plate |
| 849 | |
| 850 | parameters: |
| 851 | - string: |
Zack Williams | 8ef7981 | 2019-10-29 11:09:18 -0700 | [diff] [blame] | 852 | name: buildNode |
| 853 | default: '{build-node}' |
| 854 | description: 'Name of the Jenkins executor node to run the job on' |
| 855 | |
| 856 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 857 | name: TestNodeName |
Zack Williams | 8ef7981 | 2019-10-29 11:09:18 -0700 | [diff] [blame] | 858 | default: '{build-node}' |
| 859 | description: 'DEPRECATED - use buildNode instead' |
Suchitra Vemuri | 23b1979 | 2019-09-25 17:41:19 -0700 | [diff] [blame] | 860 | |
| 861 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 862 | name: cordRepoUrl |
| 863 | default: '{gerrit-server-url}' |
| 864 | description: 'The URL of the CORD Project repository' |
Suchitra Vemuri | 23b1979 | 2019-09-25 17:41:19 -0700 | [diff] [blame] | 865 | |
| 866 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 867 | name: configBaseDir |
| 868 | default: 'pod-configs' |
| 869 | description: 'The directory inside the POD configs repository' |
Suchitra Vemuri | 23b1979 | 2019-09-25 17:41:19 -0700 | [diff] [blame] | 870 | |
| 871 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 872 | name: configDeploymentDir |
| 873 | default: 'deployment-configs' |
| 874 | description: 'The deployment configs folder' |
Suchitra Vemuri | 23b1979 | 2019-09-25 17:41:19 -0700 | [diff] [blame] | 875 | |
| 876 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 877 | name: configKubernetesDir |
| 878 | default: 'kubernetes-configs' |
| 879 | description: 'The kubernetes config folder' |
Suchitra Vemuri | 23b1979 | 2019-09-25 17:41:19 -0700 | [diff] [blame] | 880 | |
| 881 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 882 | name: configToscaDir |
| 883 | default: 'tosca-configs' |
| 884 | description: 'The tosca config folder' |
Suchitra Vemuri | 23b1979 | 2019-09-25 17:41:19 -0700 | [diff] [blame] | 885 | |
| 886 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 887 | name: configFileName |
| 888 | default: '{config-pod}' |
| 889 | description: 'The config file' |
Suchitra Vemuri | 23b1979 | 2019-09-25 17:41:19 -0700 | [diff] [blame] | 890 | |
| 891 | - string: |
Suchitra Vemuri | 1ee3404 | 2019-10-22 13:28:07 -0700 | [diff] [blame] | 892 | name: profile |
| 893 | default: '{profile}' |
| 894 | description: 'Technology Profile pushed to the ETCD' |
| 895 | |
| 896 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 897 | name: oltDebVersion |
| 898 | default: '{oltDebVersion}' |
| 899 | description: 'OLT Software version to install' |
Suchitra Vemuri | 23b1979 | 2019-09-25 17:41:19 -0700 | [diff] [blame] | 900 | |
| 901 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 902 | name: helmRepoUrl |
| 903 | default: 'https://charts.opencord.org' |
| 904 | description: 'URL where helm-charts are published' |
Suchitra Vemuri | 23b1979 | 2019-09-25 17:41:19 -0700 | [diff] [blame] | 905 | |
| 906 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 907 | name: branch |
| 908 | default: '{branch}' |
Suchitra Vemuri | 23b1979 | 2019-09-25 17:41:19 -0700 | [diff] [blame] | 909 | |
| 910 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 911 | name: notificationEmail |
| 912 | default: 'you@opennetworking.org, suchitra@opennetworking.org' |
| 913 | description: '' |
Suchitra Vemuri | 23b1979 | 2019-09-25 17:41:19 -0700 | [diff] [blame] | 914 | |
Suchitra Vemuri | aa9b17f | 2020-02-14 14:46:07 -0800 | [diff] [blame] | 915 | - string: |
| 916 | name: onosVersion |
| 917 | default: '{onos-version}' |
| 918 | description: 'ONOS version that needs to be configured' |
| 919 | |
| 920 | |
Suchitra Vemuri | 23b1979 | 2019-09-25 17:41:19 -0700 | [diff] [blame] | 921 | - bool: |
Suchitra Vemuri | 6fb7b87 | 2019-11-05 15:20:51 -0800 | [diff] [blame] | 922 | name: released |
Suchitra Vemuri | 3341f5b | 2019-11-06 21:41:38 -0800 | [diff] [blame] | 923 | default: '{released}' |
Suchitra Vemuri | 6fb7b87 | 2019-11-05 15:20:51 -0800 | [diff] [blame] | 924 | description: "Pulls released version images when true" |
| 925 | |
| 926 | - bool: |
Suchitra Vemuri | 23b1979 | 2019-09-25 17:41:19 -0700 | [diff] [blame] | 927 | name: configurePod |
| 928 | default: true |
| 929 | description: "Configure POD via TOSCA post build" |
| 930 | |
| 931 | - bool: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 932 | name: reinstallOlt |
| 933 | default: true |
| 934 | description: "Re-install olt software bringing up CORD" |
Suchitra Vemuri | 23b1979 | 2019-09-25 17:41:19 -0700 | [diff] [blame] | 935 | |
Andrea Campanella | 32aff12 | 2020-02-03 17:02:32 +0100 | [diff] [blame] | 936 | - bool: |
| 937 | name: withKind |
Zack Williams | 21e3d16 | 2020-02-07 08:38:16 -0700 | [diff] [blame] | 938 | default: '{with-kind}' |
Andrea Campanella | 32aff12 | 2020-02-03 17:02:32 +0100 | [diff] [blame] | 939 | description: "The pods uses kind and a physical fabric thus port forward to the management is needed" |
| 940 | |
Suchitra Vemuri | e6dd15a | 2020-03-04 18:15:58 -0800 | [diff] [blame] | 941 | - bool: |
| 942 | name: ofagentGo |
| 943 | default: '{use-ofagent-go}' |
| 944 | description: "Installs POD with go version when true" |
| 945 | |
Suchitra Vemuri | 23b1979 | 2019-09-25 17:41:19 -0700 | [diff] [blame] | 946 | concurrent: true |
| 947 | |
| 948 | pipeline-scm: |
| 949 | script-path: '{Jenkinsfile}' |
| 950 | scm: |
| 951 | - git: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 952 | url: '{gerrit-server-url}/voltha-system-tests' |
| 953 | branches: |
| 954 | - '{branch}' |
Suchitra Vemuri | 23b1979 | 2019-09-25 17:41:19 -0700 | [diff] [blame] | 955 | |
| 956 | triggers: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 957 | - timed: | |
Suchitra Vemuri | 23b1979 | 2019-09-25 17:41:19 -0700 | [diff] [blame] | 958 | TZ=America/Los_Angeles |
Suchitra Vemuri | 04b55a7 | 2019-10-29 18:17:31 -0700 | [diff] [blame] | 959 | H {time} * * * |
Suchitra Vemuri | 23b1979 | 2019-09-25 17:41:19 -0700 | [diff] [blame] | 960 | |
Suchitra Vemuri | f921cda | 2019-09-25 22:53:45 -0700 | [diff] [blame] | 961 | - job-template: |
Suchitra Vemuri | e6dd15a | 2020-03-04 18:15:58 -0800 | [diff] [blame] | 962 | name: 'build_{config-pod}_{profile}_voltha{name-extension}_{release}_test' |
Suchitra Vemuri | f921cda | 2019-09-25 22:53:45 -0700 | [diff] [blame] | 963 | id: build_voltha_pod_test |
| 964 | description: | |
| 965 | <!-- Managed by Jenkins Job Builder --> |
| 966 | Post Tests on {config-pod} triggered by build_{config-pod}_{branch} <br /><br /> |
hwchiu | e3815ab | 2019-10-17 15:06:25 -0700 | [diff] [blame] | 967 | Created from job-template {id} from ci-management/jjb/cord-test/nightly-build-pipeline.yaml <br /> |
Suchitra Vemuri | f921cda | 2019-09-25 22:53:45 -0700 | [diff] [blame] | 968 | Created by Suchitra Vemuri, suchitra@opennetworking.org <br /> |
| 969 | Copyright (c) 2017 Open Networking Foundation (ONF) |
| 970 | |
| 971 | <<: *test-pipe-job-boiler-plate |
Andy Bavier | 358aa0b | 2019-11-22 11:55:39 -0700 | [diff] [blame] | 972 | pipeline-script: 'voltha-physical-functional-tests.groovy' |
| 973 | manifest-url: 'https://gerrit.opencord.org/voltha-test-manifest.git' |
| 974 | manifest-branch: 'master' |
| 975 | |
Suchitra Vemuri | f921cda | 2019-09-25 22:53:45 -0700 | [diff] [blame] | 976 | parameters: |
| 977 | - string: |
Andy Bavier | 358aa0b | 2019-11-22 11:55:39 -0700 | [diff] [blame] | 978 | name: buildNode |
Zack Williams | 8ef7981 | 2019-10-29 11:09:18 -0700 | [diff] [blame] | 979 | default: '{build-node}' |
| 980 | description: 'Name of the Jenkins executor node to run the job on' |
| 981 | |
| 982 | - string: |
| 983 | name: TestNodeName |
| 984 | default: '{build-node}' |
| 985 | description: 'DEPRECATED - use buildNode instead' |
Suchitra Vemuri | f921cda | 2019-09-25 22:53:45 -0700 | [diff] [blame] | 986 | |
| 987 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 988 | name: cordRepoUrl |
| 989 | default: '{gerrit-server-url}' |
| 990 | description: 'The URL of the CORD Project repository' |
Suchitra Vemuri | f921cda | 2019-09-25 22:53:45 -0700 | [diff] [blame] | 991 | |
| 992 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 993 | name: configBaseDir |
| 994 | default: 'pod-configs' |
| 995 | description: 'The directory inside the POD configs repository' |
Suchitra Vemuri | f921cda | 2019-09-25 22:53:45 -0700 | [diff] [blame] | 996 | |
| 997 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 998 | name: configDeploymentDir |
| 999 | default: 'deployment-configs' |
| 1000 | description: 'The deployment configs folder' |
Suchitra Vemuri | f921cda | 2019-09-25 22:53:45 -0700 | [diff] [blame] | 1001 | |
| 1002 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 1003 | name: configKubernetesDir |
| 1004 | default: 'kubernetes-configs' |
| 1005 | description: 'The kubernetes config folder' |
Suchitra Vemuri | f921cda | 2019-09-25 22:53:45 -0700 | [diff] [blame] | 1006 | |
| 1007 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 1008 | name: configToscaDir |
| 1009 | default: 'tosca-configs' |
| 1010 | description: 'The tosca config folder' |
Suchitra Vemuri | f921cda | 2019-09-25 22:53:45 -0700 | [diff] [blame] | 1011 | |
| 1012 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 1013 | name: configFileName |
| 1014 | default: '{config-pod}' |
| 1015 | description: 'The config file' |
Suchitra Vemuri | f921cda | 2019-09-25 22:53:45 -0700 | [diff] [blame] | 1016 | |
| 1017 | - string: |
Suchitra Vemuri | 1ee3404 | 2019-10-22 13:28:07 -0700 | [diff] [blame] | 1018 | name: profile |
| 1019 | default: '{profile}' |
| 1020 | description: 'Technology Profile pushed to the ETCD' |
| 1021 | |
Suchitra Vemuri | fbc4a74 | 2020-01-08 16:55:26 -0800 | [diff] [blame] | 1022 | - bool: |
| 1023 | name: released |
| 1024 | default: '{released}' |
| 1025 | description: "Pulls tests that are tagged with released as identifier" |
| 1026 | |
Suchitra Vemuri | 1ee3404 | 2019-10-22 13:28:07 -0700 | [diff] [blame] | 1027 | - string: |
hwchiu | 14f9785 | 2019-10-08 10:51:11 -0700 | [diff] [blame] | 1028 | name: branch |
| 1029 | default: '{branch}' |
Andy Bavier | 358aa0b | 2019-11-22 11:55:39 -0700 | [diff] [blame] | 1030 | description: 'Branch of the test libraries to check out' |
Suchitra Vemuri | f921cda | 2019-09-25 22:53:45 -0700 | [diff] [blame] | 1031 | |
| 1032 | - string: |
Andy Bavier | 358aa0b | 2019-11-22 11:55:39 -0700 | [diff] [blame] | 1033 | name: manifestUrl |
| 1034 | default: '{manifest-url}' |
| 1035 | description: 'Repo manifest URL for code checkout (so we can display changes in Jenkins)' |
| 1036 | |
| 1037 | - string: |
| 1038 | name: manifestBranch |
| 1039 | default: '{manifest-branch}' |
| 1040 | description: 'Repo manifest branch for code checkout (so we can display changes in Jenkins)' |
| 1041 | |
Suchitra Vemuri | af134ff | 2020-02-19 16:55:38 -0800 | [diff] [blame] | 1042 | - bool: |
| 1043 | name: powerSwitch |
| 1044 | default: '{power-switch}' |
| 1045 | description: "Indicate whether POD has power switch to reboot ONUs/OLT remotely" |
Suchitra Vemuri | f921cda | 2019-09-25 22:53:45 -0700 | [diff] [blame] | 1046 | |
| 1047 | concurrent: true |
| 1048 | |
Andy Bavier | 358aa0b | 2019-11-22 11:55:39 -0700 | [diff] [blame] | 1049 | project-type: pipeline |
| 1050 | dsl: !include-raw-escape: ../pipeline/{pipeline-script} |
Suchitra Vemuri | f921cda | 2019-09-25 22:53:45 -0700 | [diff] [blame] | 1051 | |
| 1052 | triggers: |
| 1053 | - reverse: |
Suchitra Vemuri | 6d9b1db | 2020-03-05 15:51:10 -0800 | [diff] [blame] | 1054 | jobs: 'build_{config-pod}_{profile}{name-extension}_voltha_{release}' |
Suchitra Vemuri | f921cda | 2019-09-25 22:53:45 -0700 | [diff] [blame] | 1055 | result: 'success' |