blob: ff7d7b3e5bbb88745e68b826c481271fe0a3cc87 [file] [log] [blame]
Suchitra Vemuriddb27792018-08-23 15:29:42 -07001// Copyright 2017-present Open Networking Foundation
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
Suchitra Vemuriddb27792018-08-23 15:29:42 -070015node ("${TestNodeName}") {
Luca Preteb3029bd2018-08-28 16:31:39 -070016 timeout (100) {
17 try {
18 stage ("Parse deployment configuration file") {
Luca Prete48634052018-12-21 15:31:51 -080019 sh returnStdout: true, script: "rm -rf helm-repo-tools ${configBaseDir}"
20 sh returnStdout: true, script: "git clone -b ${branch} ${cordRepoUrl}/helm-repo-tools"
You Wangd6c5e8c2018-08-29 12:49:51 -070021 sh returnStdout: true, script: "git clone -b ${branch} ${cordRepoUrl}/${configBaseDir}"
You Wang59ded6c2018-10-05 17:43:44 -070022 deployment_config = readYaml file: "${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
Suchitra Vemuriddb27792018-08-23 15:29:42 -070023 }
Luca Preteb3029bd2018-08-28 16:31:39 -070024 stage('Clean up') {
25 timeout(10) {
26 sh returnStdout: true, script: """
Luca Preteb3029bd2018-08-28 16:31:39 -070027 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf
Luca Prete5a970152018-08-29 15:20:47 -070028 for hchart in \$(helm list -q | grep -E -v 'docker-registry|mavenrepo|ponnet');
Luca Preteb3029bd2018-08-28 16:31:39 -070029 do
30 echo "Purging chart: \${hchart}"
31 helm delete --purge "\${hchart}"
32 done
Suchitra Vemuriddb27792018-08-23 15:29:42 -070033 """
Luca Preteb3029bd2018-08-28 16:31:39 -070034 timeout(5) {
35 waitUntil {
36 helm_deleted = sh returnStdout: true, script: """
37 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf &&
Luca Preteb4966672018-08-29 16:49:48 -070038 helm ls -q | grep -E -v 'docker-registry|mavenrepo|ponnet' | wc -l
Suchitra Vemuriddb27792018-08-23 15:29:42 -070039 """
Luca Preteb3029bd2018-08-28 16:31:39 -070040 return helm_deleted.toInteger() == 0
41 }
42 }
43 timeout(5) {
44 waitUntil {
45 kubectl_deleted = sh returnStdout: true, script: """
46 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf &&
Luca Preteb4966672018-08-29 16:49:48 -070047 kubectl get pods --all-namespaces --no-headers | grep -E -v 'kube-system|docker-registry|mavenrepo|ponnet' | wc -l
Luca Preteb3029bd2018-08-28 16:31:39 -070048 """
49 return kubectl_deleted.toInteger() == 0
Suchitra Vemuriddb27792018-08-23 15:29:42 -070050 }
51 }
52 }
53 }
Luca Prete62a48c82019-01-16 10:40:01 -080054 stage('Add Helm repositories') {
Kailash4321b4d2018-12-18 13:11:08 -080055 sh returnStdout: true, script: """
56 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf
Kailashe841eca2019-03-13 13:18:14 -070057 helm repo add cord ${helmRepoUrl}
Luca Prete62a48c82019-01-16 10:40:01 -080058 helm repo add incubator http://storage.googleapis.com/kubernetes-charts-incubator
Kailash4321b4d2018-12-18 13:11:08 -080059 helm repo update
60 """
61 timeout(1) {
62 waitUntil {
63 cord_repo_present = sh returnStdout: true, script: """
64 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf &&
65 helm repo list | grep cord | wc -l
Kailash Khalasi100cf462018-09-20 10:24:57 -070066 """
Kailash4321b4d2018-12-18 13:11:08 -080067 return cord_repo_present.toInteger() == 1
Matteo Scandolo2f8271f2018-12-12 15:54:54 -080068 }
69 }
Suchitra Vemuriddb27792018-08-23 15:29:42 -070070 }
Luca Prete31eda022018-12-21 13:49:44 -080071 stage('Install CORD Kafka') {
72 timeout(10) {
73 sh returnStdout: true, script: """
74 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf
Zack Williams2a458342019-01-14 14:53:24 -070075 helm install --version 0.13.3 --set configurationOverrides."offsets\\.topic\\.replication\\.factor"=1 --set configurationOverrides."log\\.retention\\.hours"=4 --set configurationOverrides."log\\.message\\.timestamp\\.type"="LogAppendTime" --set replicas=1 --set persistence.enabled=false --set zookeeper.replicaCount=1 --set zookeeper.persistence.enabled=false -n cord-kafka incubator/kafka
Luca Prete31eda022018-12-21 13:49:44 -080076 """
77 }
78 timeout(10) {
79 waitUntil {
80 kafka_instances_running = sh returnStdout: true, script: """
81 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf &&
82 kubectl get pods | grep cord-kafka | grep -i running | grep 1/1 | wc -l
Kailash4321b4d2018-12-18 13:11:08 -080083 """
Luca Prete31eda022018-12-21 13:49:44 -080084 return kafka_instances_running.toInteger() == 2
Kailash4321b4d2018-12-18 13:11:08 -080085 }
86 }
Luca Prete31eda022018-12-21 13:49:44 -080087 }
Matteo Scandolo863e3b12019-04-16 14:55:10 -070088 if ( params.installMonitoringAndLogging ) {
89 stage('Install Logging Infrastructure') {
90 timeout(10) {
91 sh returnStdout: true, script: """
92 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf
93 helm install -f $WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.yml --set elasticsearch.cluster.env.MINIMUM_MASTER_NODES="1" --set elasticsearch.client.replicas=1 --set elasticsearch.master.replicas=2 --set elasticsearch.master.persistence.enabled=false --set elasticsearch.data.replicas=1 --set elasticsearch.data.persistence.enabled=false -n logging cord/logging
94 helm-repo-tools/wait_for_pods.sh
95 """
96 }
97 }
98 stage('Install Monitoring Infrastructure') {
99 timeout(10) {
100 sh returnStdout: true, script: """
101 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf
102 helm install -f $WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.yml -n nem-monitoring cord/nem-monitoring
103 helm-repo-tools/wait_for_pods.sh
104 """
105 }
106 }
Luca Prete31eda022018-12-21 13:49:44 -0800107 }
108 stage('Install etcd-cluster') {
109 timeout(10) {
110 sh returnStdout: true, script: """
111 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf
Zack Williams2a458342019-01-14 14:53:24 -0700112 helm install -f $WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.yml --version 0.8.3 -n etcd-operator stable/etcd-operator
Luca Prete31eda022018-12-21 13:49:44 -0800113 """
114 }
115 timeout(10) {
116 waitUntil {
117 etcd_running = sh returnStdout: true, script: """
118 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf &&
119 kubectl get pods | grep etcd | grep -i running | grep 1/1 | wc -l
Kailash4321b4d2018-12-18 13:11:08 -0800120 """
Luca Prete31eda022018-12-21 13:49:44 -0800121 return etcd_running.toInteger() == 3
Kailash4321b4d2018-12-18 13:11:08 -0800122 }
123 }
Luca Prete31eda022018-12-21 13:49:44 -0800124 }
125 stage('Install voltha') {
126 timeout(10) {
127 sh returnStdout: true, script: """
128 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf
Suchitra Vemuri7dee24a2019-05-24 11:59:52 -0700129 helm install -n voltha -f $WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.yml cord/voltha --version 1.0.4
Luca Prete31eda022018-12-21 13:49:44 -0800130 """
131 }
132 timeout(10) {
133 waitUntil {
134 voltha_completed = sh returnStdout: true, script: """
135 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf &&
136 kubectl get pods -n voltha | grep -i running | grep 1/1 | wc -l
Kailash4321b4d2018-12-18 13:11:08 -0800137 """
Luca Prete31eda022018-12-21 13:49:44 -0800138 return voltha_completed.toInteger() == 8
Kailash4321b4d2018-12-18 13:11:08 -0800139 }
140 }
Luca Prete31eda022018-12-21 13:49:44 -0800141 }
142 stage('Install ONOS') {
143 timeout(10) {
144 sh returnStdout: true, script: """
145 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf
146 helm install -n onos -f $WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.yml cord/onos
147 """
148 }
149 timeout(10) {
150 waitUntil {
151 onos_completed = sh returnStdout: true, script: """
152 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf &&
153 kubectl get pods | grep -i onos | grep -i running | grep 2/2 | wc -l
Kailash4321b4d2018-12-18 13:11:08 -0800154 """
Luca Prete31eda022018-12-21 13:49:44 -0800155 return onos_completed.toInteger() == 1
Kailash4321b4d2018-12-18 13:11:08 -0800156 }
157 }
Luca Prete31eda022018-12-21 13:49:44 -0800158 }
159 stage('Install xos-core') {
160 timeout(10) {
161 sh returnStdout: true, script: """
162 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf
163 helm install -f $WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.yml -n xos-core cord/xos-core
164 """
165 }
166 timeout(10) {
167 waitUntil {
168 xos_core_completed = sh returnStdout: true, script: """
169 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf &&
170 kubectl get pods | grep -i xos | grep -i running | grep 1/1 | wc -l
Kailash4321b4d2018-12-18 13:11:08 -0800171 """
Luca Prete31eda022018-12-21 13:49:44 -0800172 return xos_core_completed.toInteger() == 6
Kailash4321b4d2018-12-18 13:11:08 -0800173 }
174 }
Luca Prete31eda022018-12-21 13:49:44 -0800175 }
176 stage('Install seba-services') {
177 timeout(10) {
178 sh returnStdout: true, script: """
179 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf
Suchitra Vemuri82fd4ff2019-03-05 20:41:15 -0800180 helm install -f $WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.yml -n seba-services cord/seba-services
Luca Prete31eda022018-12-21 13:49:44 -0800181 """
182 }
183 timeout(10) {
184 waitUntil {
185 att_workflow_tosca_completed = sh returnStdout: true, script: """
186 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf &&
187 kubectl get pods | grep -i seba-services-tosca-loader | grep -i completed | wc -l
Kailash4321b4d2018-12-18 13:11:08 -0800188 """
Luca Prete31eda022018-12-21 13:49:44 -0800189 return att_workflow_tosca_completed.toInteger() == 1
Kailash4321b4d2018-12-18 13:11:08 -0800190 }
191 }
Luca Prete31eda022018-12-21 13:49:44 -0800192 }
193 stage('Install base-kubernetes') {
194 timeout(10) {
195 sh returnStdout: true, script: """
196 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf
197 helm install -f $WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.yml -n base-kubernetes cord/base-kubernetes
198 """
199 }
200 timeout(10) {
201 waitUntil {
202 base_kubernetes_tosca_running = sh returnStdout: true, script: """
203 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf &&
204 kubectl get pods | grep -i base-kubernetes-tosca-loader | grep -i completed | wc -l
Kailash4321b4d2018-12-18 13:11:08 -0800205 """
Luca Prete31eda022018-12-21 13:49:44 -0800206 return base_kubernetes_tosca_running.toInteger() == 1
Kailash4321b4d2018-12-18 13:11:08 -0800207 }
208 }
Luca Prete31eda022018-12-21 13:49:44 -0800209 }
210 stage('Install att workflow') {
211 timeout(10) {
212 sh returnStdout: true, script: """
213 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf
Suchitra Vemuri982b27b2019-03-05 14:32:43 -0800214 helm install -f $WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.yml --set att-workflow-driver.kafkaService=cord-kafka -n att-workflow cord/att-workflow
Luca Prete31eda022018-12-21 13:49:44 -0800215 """
Kailash58255ca2018-12-19 09:48:46 -0800216 }
Luca Prete31eda022018-12-21 13:49:44 -0800217 timeout(10) {
218 waitUntil {
219 att_workflow_tosca_completed = sh returnStdout: true, script: """
220 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf &&
221 kubectl get pods | grep -i att-workflow-tosca-loader | grep -i completed | wc -l
Kailash58255ca2018-12-19 09:48:46 -0800222 """
Luca Prete31eda022018-12-21 13:49:44 -0800223 return att_workflow_tosca_completed.toInteger() == 1
Kailash4321b4d2018-12-18 13:11:08 -0800224 }
225 }
226 }
227
Kailash9b56c862018-11-29 08:45:25 -0800228 if ( params.reinstallOlt ) {
229 stage('Reinstall OLT software') {
230 for(int i=0; i < deployment_config.olts.size(); i++) {
Luca Preteb3029bd2018-08-28 16:31:39 -0700231 sh returnStdout: true, script: """
Kailash9b56c862018-11-29 08:45:25 -0800232 sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} 'dpkg --remove asfvolt16 && dpkg --purge asfvolt16'
Luca Preteb3029bd2018-08-28 16:31:39 -0700233 """
Kailash9b56c862018-11-29 08:45:25 -0800234 timeout(5) {
235 waitUntil {
236 olt_sw_present = sh returnStdout: true, script: """
237 sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} 'dpkg --list | grep asfvolt16 | wc -l'
238 """
239 return olt_sw_present.toInteger() == 0
240 }
241 }
242 sh returnStdout: true, script: """
243 sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} "dpkg --install ${oltDebVersion}"
244 """
245 timeout(5) {
246 waitUntil {
247 olt_sw_present = sh returnStdout: true, script: """
248 sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} 'dpkg --list | grep asfvolt16 | wc -l'
249 """
250 return olt_sw_present.toInteger() == 1
251 }
252 }
253 // If the OLT is connected to a 40G switch interface, set the NNI port to be downgraded
254 if ("${deployment_config.olts[i].fortygig}" != null && "${deployment_config.olts[i].fortygig}" == 'true') {
255 sh returnStdout: true, script: """
256 sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} 'echo "port ce128 sp=40000" >> /broadcom/qax.soc'
257 sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} '/opt/bcm68620/svk_init.sh'
258 """
259 }
Luca Preteb3029bd2018-08-28 16:31:39 -0700260 }
261 }
Kailash9b56c862018-11-29 08:45:25 -0800262 stage('Restart OLT processes') {
263 for(int i=0; i < deployment_config.olts.size(); i++) {
264 timeout(5) {
265 sh returnStdout: true, script: """
266 ssh-keyscan -H ${deployment_config.olts[i].ip} >> ~/.ssh/known_hosts
267 sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} 'service bal_core_dist stop' || true
268 sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} 'service openolt stop' || true
269 sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} '> /var/log/bal_core_dist.log'
270 sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} '> /var/log/openolt.log'
271 sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} 'service bal_core_dist start &'
272 sleep 5
273 sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} 'service openolt start &'
274 """
275 }
276 timeout(15) {
277 waitUntil {
278 onu_discovered = sh returnStdout: true, script: "sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} 'cat /var/log/openolt.log | grep \"oper_state: up\" | wc -l'"
279 return onu_discovered.toInteger() > 0
280 }
Luca Preteb3029bd2018-08-28 16:31:39 -0700281 }
282 }
283 }
284 }
Kailash Khalasi4d18e202018-09-14 13:32:16 -0700285 if ( params.configurePod ) {
Kailash Khalasidef2f4e2018-09-17 10:39:14 -0700286 dir ("${configBaseDir}/${configToscaDir}/att-workflow") {
Kailash Khalasi4d18e202018-09-14 13:32:16 -0700287 stage('Configure R-CORD - Fabric and whitelist') {
288 timeout(1) {
289 waitUntil {
290 out_fabric = sh returnStdout: true, script: """
291 curl -s -H "xos-username:admin@opencord.org" -H "xos-password:letmein" -X POST --data-binary @${configFileName}-fabric.yaml http://${deployment_config.nodes[0].ip}:30007/run | grep -i "created models" | wc -l
292 """
293 return out_fabric.toInteger() == 1
294 }
Kailash Khalasic1a90f12018-09-13 13:13:22 -0700295 }
296 }
Kailash Khalasi4d18e202018-09-14 13:32:16 -0700297 stage('Configure R-CORD - Subscriber') {
298 timeout(1) {
299 waitUntil {
300 out_subscriber = sh returnStdout: true, script: """
301 curl -s -H 'xos-username:admin@opencord.org' -H 'xos-password:letmein' -X POST --data-binary @${configFileName}-subscriber.yaml http://${deployment_config.nodes[0].ip}:30007/run | grep -i "created models" | wc -l
302 """
303 return out_subscriber.toInteger() == 1
304 }
Kailash Khalasic1a90f12018-09-13 13:13:22 -0700305 }
306 }
Kailash Khalasi4d18e202018-09-14 13:32:16 -0700307 stage('Configure R-CORD - OLT') {
308 timeout(1) {
309 waitUntil {
310 out_olt = sh returnStdout: true, script: """
311 curl -H 'xos-username:admin@opencord.org' -H 'xos-password:letmein' -X POST --data-binary @${configFileName}-olt.yaml http://${deployment_config.nodes[0].ip}:30007/run | grep -i "created models" | wc -l
312 """
313 return out_olt.toInteger() == 1
314 }
Kailash Khalasic1a90f12018-09-13 13:13:22 -0700315 }
316 }
Luca Preteb3029bd2018-08-28 16:31:39 -0700317 }
Suchitra Vemuriddb27792018-08-23 15:29:42 -0700318 }
Matteo Scandolo8819edd2018-11-27 13:18:08 -0800319 if ( params.installBBSim ) {
Luca Prete31eda022018-12-21 13:49:44 -0800320 stage('Install BBSim') {
321 timeout(10) {
322 sh returnStdout: true, script: """
323 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf
Suchitra Vemuri82fd4ff2019-03-05 20:41:15 -0800324 helm install -f $WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.yml -n bbsim cord/bbsim --set onus_per_pon_port=${onuNumber}
Luca Prete31eda022018-12-21 13:49:44 -0800325 """
326 }
327 timeout(10) {
328 waitUntil {
329 bbsim_running = sh returnStdout: true, script: """
330 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf &&
331 kubectl get pods -n voltha | grep -i bbsim | wc -l
Matteo Scandolo8819edd2018-11-27 13:18:08 -0800332 """
Luca Prete31eda022018-12-21 13:49:44 -0800333 return bbsim_running.toInteger() == 1
Matteo Scandolo8819edd2018-11-27 13:18:08 -0800334 }
335 }
336 }
337 dir ("${configBaseDir}/${configToscaDir}/bbsim") {
338 stage('Configure BBSim - OLT') {
339 timeout(1) {
340 waitUntil {
341 out_olt = sh returnStdout: true, script: """
342 curl -H 'xos-username:admin@opencord.org' -H 'xos-password:letmein' -X POST --data-binary @bbsim-16.yaml http://${deployment_config.nodes[0].ip}:30007/run | grep -i "created models" | wc -l
343 """
344 return out_olt.toInteger() == 1
345 }
346 }
347 }
348 }
349 }
Luca Preteb3029bd2018-08-28 16:31:39 -0700350 currentBuild.result = 'SUCCESS'
351 } catch (err) {
352 currentBuild.result = 'FAILURE'
353 step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "${notificationEmail}", sendToIndividuals: false])
Matteo Scandolob0607672019-04-16 15:33:37 -0700354 throw err
Luca Preteb3029bd2018-08-28 16:31:39 -0700355 }
356 echo "RESULT: ${currentBuild.result}"
Suchitra Vemuriddb27792018-08-23 15:29:42 -0700357 }
358}