blob: 63904eecce8867e5d74c0c70d685e0e2c910ae6d [file] [log] [blame]
Kailash Khalasi54170812018-05-24 12:50:22 -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
Zack Williams9d68aa32018-07-12 11:50:37 -070015// Run XOS api tests on HEAD of a branch (usually master), loading the
16// corresponding charts
17
Kailash Khalasi54170812018-05-24 12:50:22 -070018CORE_CONTAINER="null"
19
20pipeline {
21
22 /* no label, executor is determined by JJB */
23 agent {
24 label "${params.executorNode}"
25 }
26
27 stages {
28
29 stage('repo') {
30 steps {
31 checkout(changelog: false, \
32 poll: false,
33 scm: [$class: 'RepoScm', \
34 manifestRepositoryUrl: "${params.manifestUrl}", \
35 manifestBranch: "${params.manifestBranch}", \
36 currentBranch: true, \
37 destinationDir: 'cord', \
38 forceSync: true,
39 resetFirst: true, \
40 quiet: true, \
41 jobs: 4, \
42 showAllChanges: true] \
43 )
44 }
45 }
46
47 stage('patch') {
48 steps {
49 sh """
Zack Williams0efdd262018-06-28 14:17:29 -070050 #!/usr/bin/env bash
51 set -eu -o pipefail
52
53 VERSIONFILE="" # file path to file containing version number
54 NEW_VERSION="" # version number found in VERSIONFILE
Zack Williams2d0ac6b2018-06-29 09:17:41 -070055 releaseversion=0
Zack Williams0efdd262018-06-28 14:17:29 -070056
57 function read_version {
58 if [ -f "VERSION" ]
59 then
60 NEW_VERSION=\$(head -n1 "VERSION")
61 VERSIONFILE="VERSION"
62 elif [ -f "package.json" ]
63 then
64 NEW_VERSION=\$(python -c 'import json,sys;obj=json.load(sys.stdin); print obj["version"]' < package.json)
65 VERSIONFILE="package.json"
66 else
67 echo "ERROR: No versioning file found!"
68 exit 1
69 fi
70 }
71
72 # check if the version is a released version
73 function check_if_releaseversion {
74 if [[ "\$NEW_VERSION" =~ ^([0-9]+)\\.([0-9]+)\\.([0-9]+)\$ ]]
75 then
76 echo "Version string '\$NEW_VERSION' in '\$VERSIONFILE' is a SemVer released version!"
77 releaseversion=1
78 else
79 echo "Version string '\$NEW_VERSION' in '\$VERSIONFILE' is not a SemVer released version, skipping."
80 fi
81 }
82
Kailash Khalasi54170812018-05-24 12:50:22 -070083 pushd cord
84 PROJECT_PATH=\$(xmllint --xpath "string(//project[@name=\\\"${gerritProject}\\\"]/@path)" .repo/manifest.xml)
85 repo download "\$PROJECT_PATH" "${gerritChangeNumber}/${gerritPatchsetNumber}"
Zack Williams0efdd262018-06-28 14:17:29 -070086
87 pushd \$PROJECT_PATH
88 echo "Existing git tags:"
89 git tag -n
90
91 read_version
92 check_if_releaseversion
93
94 # perform checks if a released version
95 if [ "\$releaseversion" -eq "1" ]
96 then
97 git config --global user.email "apitest@opencord.org"
98 git config --global user.name "API Test"
99
100 git tag -a "\$NEW_VERSION" -m "Tagged for api test on Gerrit patchset: ${gerritChangeNumber}"
101
102 echo "Tags including new tag:"
103 git tag -n
104
105 fi
Kailash Khalasi54170812018-05-24 12:50:22 -0700106 popd
Zack Williams0efdd262018-06-28 14:17:29 -0700107 popd
108 """
Kailash Khalasi54170812018-05-24 12:50:22 -0700109 }
110 }
111
Zack Williams66500002018-09-06 15:29:05 -0700112 stage('tag update') {
113 steps {
114 sh """
115 #!/usr/bin/env bash
116 set -eu -o pipefail
117
Kailash Khalasif57dcdd2018-09-16 09:22:27 -0700118 echo "" > $WORKSPACE/xos_tags.yaml
Zack Williams66500002018-09-06 15:29:05 -0700119 # skip projects that aren't the XOS core repository
Kailash Khalasif57dcdd2018-09-16 09:22:27 -0700120 if [ "$GERRIT_PROJECT" != "xos" ]; then
Zack Williams66500002018-09-06 15:29:05 -0700121 exit 0
122 fi
123
Kailash Khalasif57dcdd2018-09-16 09:22:27 -0700124 echo "" > $WORKSPACE/updated_dockerfiles
Zack Williams66500002018-09-06 15:29:05 -0700125 XOS_MAJOR=\$(cut -b 1 cord/orchestration/xos/VERSION)
126 XOS_VERSION=\$(cat cord/orchestration/xos/VERSION)
127
128 # update services
129 for df in cord/orchestration/xos_services/*/Dockerfile.synchronizer cord/orchestration/profiles/*/Dockerfile.synchronizer
130 do
131 df_contents=\$(cat "\$df")
Kailash Khalasif57dcdd2018-09-16 09:22:27 -0700132 if [[ "\$df_contents" =~ "FROM xosproject/xos-synchronizer-base:\$XOS_MAJOR" ||
Zack Williams66500002018-09-06 15:29:05 -0700133 "\$df_contents" =~ "FROM xosproject/xos-synchronizer-base:master" ]]
134 then
135 sed -i "s/^FROM\\(.*\\):.*\$/FROM\\1:\$XOS_VERSION/" "\$df"
Kailash Khalasif57dcdd2018-09-16 09:22:27 -0700136 echo "$WORKSPACE/\$df" >> $WORKSPACE/updated_dockerfiles
Zack Williams66500002018-09-06 15:29:05 -0700137 fi
138 done
139
140 # create values file with core version tags
Zack Williams9b6b5eb2018-09-14 13:45:18 -0700141 # not indented because heredoc requires it
Kailash Khalasif57dcdd2018-09-16 09:22:27 -0700142 cat << EOF > $WORKSPACE/xos_tags.yaml
Zack Williams9b6b5eb2018-09-14 13:45:18 -0700143---
Kailash Khalasif57dcdd2018-09-16 09:22:27 -0700144xos_coreImage: 'xosproject/xos-core:\$XOS_VERSION'
145xos_chameleonImage: 'xosproject/chameleon:\$XOS_VERSION'
146xos_toscaImage: 'xosproject/xos-tosca:\$XOS_VERSION'
Zack Williams9b6b5eb2018-09-14 13:45:18 -0700147EOF
Zack Williams66500002018-09-06 15:29:05 -0700148 """
149 }
150 }
Zack Williams0efdd262018-06-28 14:17:29 -0700151
Kailash Khalasi54170812018-05-24 12:50:22 -0700152 stage('prep') {
153 parallel {
154
155 stage('images') {
156 steps {
157 sh '''
Kailash Khalasi934d39b2018-05-30 10:59:49 -0700158 pushd cord/automation-tools/developer
Zack Williamsa3185032018-07-03 17:38:33 -0700159 mkdir ib_logs
Zack Williams7fea5722018-07-03 21:17:47 -0700160 ./imagebuilder.py -l ib_logs -a ib_actions.yml -g ib_graph.dot -f ../../helm-charts/examples/filter-images.yaml
Kailash Khalasi54170812018-05-24 12:50:22 -0700161 popd
162 '''
Zack Williamsa3185032018-07-03 17:38:33 -0700163 archiveArtifacts artifacts: 'cord/automation-tools/developer/ib_actions.yml, cord/automation-tools/developer/ib_graph.dot, cord/automation-tools/developer/ib_logs/*', fingerprint: true
Kailash Khalasi54170812018-05-24 12:50:22 -0700164 }
165 }
166
167 stage('minikube') {
168 steps {
169 /* see https://github.com/kubernetes/minikube/#linux-continuous-integration-without-vm-support */
170 sh '''
171 export MINIKUBE_WANTUPDATENOTIFICATION=false
172 export MINIKUBE_WANTREPORTERRORPROMPT=false
173 export CHANGE_MINIKUBE_NONE_USER=true
174 export MINIKUBE_HOME=$HOME
175 mkdir -p $HOME/.kube || true
176 touch $HOME/.kube/config
177 export KUBECONFIG=$HOME/.kube/config
178 sudo -E /usr/bin/minikube start --vm-driver=none
179 '''
180 script {
181 timeout(3) {
182 waitUntil {
183 sleep 5
184 def kc_ret = sh script: "kubectl get po", returnStatus: true
185 return (kc_ret == 0);
186 }
187 }
188 }
189 }
190 }
191 }
192 }
Zack Williamsfd87d652018-07-12 14:21:12 -0700193
Kailash Khalasi54170812018-05-24 12:50:22 -0700194 stage('helm') {
195 steps {
196 sh '''
197 helm init
198 sleep 60
199 helm repo add incubator https://kubernetes-charts-incubator.storage.googleapis.com/
200 '''
201 }
202 }
Zack Williamsfd87d652018-07-12 14:21:12 -0700203
204 stage('build') {
Kailash Khalasi54170812018-05-24 12:50:22 -0700205 steps {
206 sh """
Zack Williamsc8cfb222018-07-05 13:29:28 -0700207 #!/usr/bin/env bash
208 set -eu -o pipefail
Kailash Khalasi12b2e222018-06-13 09:45:25 -0700209
Zack Williamsc8cfb222018-07-05 13:29:28 -0700210 helm_install_args='-f examples/image-tag-candidate.yaml -f examples/imagePullPolicy-IfNotPresent.yaml -f examples/api-test-values.yaml'
Zack Williamsc8cfb222018-07-05 13:29:28 -0700211
Zack Williams66500002018-09-06 15:29:05 -0700212 # skip projects that aren't the XOS core repository
Kailash Khalasif57dcdd2018-09-16 09:22:27 -0700213 if [ "$GERRIT_PROJECT" != "xos" ]; then
Zack Williams66500002018-09-06 15:29:05 -0700214 helm_install_args+=' -f $WORKSPACE/xos_tags.yaml'
215 fi
216
Zack Williamsc8cfb222018-07-05 13:29:28 -0700217 pushd cord/helm-charts
218
219 helm dep up xos-core
220 helm install \${helm_install_args} xos-core -n xos-core
221
222 # Pick which chart(s) to load depending on the project being tested
223 # In regex, please list repos in same order as requirements.yaml in the chart(s) loaded!
224
225 if [[ "$GERRIT_PROJECT" =~ ^(rcord|onos-service|fabric|olt-service|vsg-hw|vrouter)\$ ]]; then
226 helm dep update xos-profiles/rcord-lite
227 helm install \${helm_install_args} xos-profiles/rcord-lite -n rcord-lite
Zack Williamsc8cfb222018-07-05 13:29:28 -0700228
229 elif [[ "$GERRIT_PROJECT" =~ ^(vMME|vspgwc|vspgwu|vHSS|hss_db|internetemulator|sdn-controller|epc-service|mcord|progran)\$ ]]; then
Zack Williamsee86e662018-07-06 10:18:28 -0700230 helm dep update xos-profiles/base-openstack
Zack Williamsc8cfb222018-07-05 13:29:28 -0700231 helm dep update xos-profiles/mcord
Zack Williamsee86e662018-07-06 10:18:28 -0700232 helm install \${helm_install_args} xos-profiles/base-openstack -n base-openstack
233 helm install \${helm_install_args} xos-profiles/mcord -n mcord
Zack Williamsc8cfb222018-07-05 13:29:28 -0700234
235 elif [[ "$GERRIT_PROJECT" =~ ^(openstack|vtn-service|exampleservice|addressmanager)\$ ]]; then
236 # NOTE: onos-service is included in base-openstack, but tested w/rcord-lite chart
237
238 helm dep update xos-profiles/base-openstack
239 helm dep update xos-profiles/demo-exampleservice
240 helm install \${helm_install_args} xos-profiles/base-openstack -n base-openstack
241 helm install \${helm_install_args} xos-profiles/demo-exampleservice -n demo-exampleservice
242
243 elif [[ "$GERRIT_PROJECT" =~ ^(kubernetes-service|simpleexampleservice)\$ ]]; then
244 helm dep update xos-profiles/base-kubernetes
245 helm dep update xos-profiles/demo-simpleexampleservice
246 helm install \${helm_install_args} xos-profiles/base-kubernetes -n base-kubernetes
247 helm install \${helm_install_args} xos-profiles/demo-simpleexampleservice -n demo-simpleexampleservice
248
249 elif [[ "$GERRIT_PROJECT" =~ ^(hippie-oss)\$ ]]; then
250 helm dep update xos-services/hippie-oss
251 helm install \${helm_install_args} xos-services/hippie-oss -n hippie-oss
252
Matteo Scandolo85ce8fc2018-08-13 06:30:45 -0700253 elif [[ "$GERRIT_PROJECT" =~ ^(att-workflow-driver)\$ ]]; then
254 helm dep update xos-services/att-workflow-driver
255 helm install \${helm_install_args} xos-services/att-workflow-driver -n att-workflow-driver
256
Zack Williams9d68aa32018-07-12 11:50:37 -0700257 elif [[ "$GERRIT_PROJECT" =~ ^(xos|xos-tosca|cord-tester|helm-charts)\$ ]]; then
Zack Williamsbafed362018-07-05 16:32:27 -0700258 echo "No additional charts to install for testing $GERRIT_PROJECT"
259
Zack Williamsc8cfb222018-07-05 13:29:28 -0700260 else
261 echo "Couldn't find a chart to test project: $GERRIT_PROJECT!"
262 exit 1
Kailash Khalasi54170812018-05-24 12:50:22 -0700263 fi
Zack Williamsc8cfb222018-07-05 13:29:28 -0700264
Kailash Khalasi2bc499b2018-07-25 16:10:11 -0700265 # wait for services to load
Kailash Khalasiedb48b12018-07-31 13:01:01 -0700266 JOBS_TIMEOUT=900 ./scripts/wait_for_jobs.sh
Zack Williamsc8cfb222018-07-05 13:29:28 -0700267
268 echo "# Checking helm deployments"
Kailash Khalasi12b2e222018-06-13 09:45:25 -0700269 kubectl get pods
Zack Williamsc8cfb222018-07-05 13:29:28 -0700270 helm list
271
272 for hchart in \$(helm list -q);
273 do
274 echo "## 'helm status' for chart: \${hchart} ##"
275 helm status "\${hchart}"
276 done
277
Kailash Khalasi54170812018-05-24 12:50:22 -0700278 popd
Zack Williamsfd87d652018-07-12 14:21:12 -0700279 """
Kailash Khalasi54170812018-05-24 12:50:22 -0700280 }
281 }
Kailash Khalasi512a7e52018-07-30 09:12:16 -0700282 stage('wait for core') {
283 steps {
284 timeout(time:5) {
285 waitUntil {
286 script {
287 try {
288 sh """
289 CORE_POD=\$(kubectl get pods | grep xos-core | awk '{print \$1}')
290 CHAM_POD=\$(kubectl get pods | grep chameleon | awk '{print \$1}')
291 CHAM_CONTAINER=\$(docker ps | grep k8s_xos-chameleon | awk '{print \$1}')
292 XOS_CHAMELEON=\$(docker exec \$CHAM_CONTAINER ip a | grep -oE "([0-9]{1,3}\\.){3}[0-9]{1,3}\\b" | grep 172)
293 kubectl logs \$CORE_POD | grep "XOS core entering wait loop"
Kailash Khalasi512a7e52018-07-30 09:12:16 -0700294 curl -I -u admin@opencord.org:letmein http://\$XOS_CHAMELEON:9101/xosapi/v1/core/users | grep "200 OK"
Kailash Khalasi309872a2018-07-31 12:39:02 -0700295 sleep 30
Kailash Khalasi25ee0722018-07-30 14:26:41 -0700296 curl -I -u admin@opencord.org:letmein http://\$XOS_CHAMELEON:9101/xosapi/v1/core/sites | grep "200 OK"
297 """
Kailash Khalasi512a7e52018-07-30 09:12:16 -0700298 return true
299 } catch (exception) {
300 return false
301 }
302 }
303 }
304 }
305 }
306 }
Zack Williamsfd87d652018-07-12 14:21:12 -0700307
308 stage('setup') {
Kailash Khalasi54170812018-05-24 12:50:22 -0700309 steps {
310 sh """
Zack Williamsfd87d652018-07-12 14:21:12 -0700311 CORE_CONTAINER=\$(docker ps | grep k8s_xos-core | awk '{print \$1}')
Zack Williamsc8cfb222018-07-05 13:29:28 -0700312
Zack Williamsfd87d652018-07-12 14:21:12 -0700313 docker cp $WORKSPACE/cord/test/cord-tester/src/test/cord-api/Tests/targets/xosapitests.xtarget \$CORE_CONTAINER:/opt/xos/lib/xos-genx/xosgenx/targets/xosapitests.xtarget
314 docker cp $WORKSPACE/cord/test/cord-tester/src/test/cord-api/Tests/targets/xosserviceapitests.xtarget \$CORE_CONTAINER:/opt/xos/lib/xos-genx/xosgenx/targets/xosserviceapitests.xtarget
315 docker cp $WORKSPACE/cord/test/cord-tester/src/test/cord-api/Tests/targets/xoslibrary.xtarget \$CORE_CONTAINER:/opt/xos/lib/xos-genx/xosgenx/targets/xoslibrary.xtarget
316 docker exec -i \$CORE_CONTAINER /bin/bash -c "xosgenx --target /opt/xos/lib/xos-genx/xosgenx/targets/./xosapitests.xtarget /opt/xos/core/models/core.xproto" > $WORKSPACE/cord/test/cord-tester/src/test/cord-api/Tests/XOSCoreAPITests.robot
Zack Williamsc8cfb222018-07-05 13:29:28 -0700317
Zack Williamsfd87d652018-07-12 14:21:12 -0700318 # create additional testing files if services are loaded
319 if ! [[ "$GERRIT_PROJECT" =~ ^(xos|xos-tosca|cord-tester|helm-charts)\$ ]]; then
320 export testname=_service_api.robot
321 export library=_library.robot
Zack Williamsc8cfb222018-07-05 13:29:28 -0700322
Zack Williamsfd87d652018-07-12 14:21:12 -0700323 SERVICES=\$(docker exec -i \$CORE_CONTAINER /bin/bash -c "cd /opt/xos/dynamic_services/;find -name '*.xproto'" | awk -F[//] '{print \$2}')
324 echo \$SERVICES
Zack Williamsc8cfb222018-07-05 13:29:28 -0700325
Zack Williamsfd87d652018-07-12 14:21:12 -0700326 for i in \$SERVICES; do bash -c "docker exec -i \$CORE_CONTAINER /bin/bash -c 'xosgenx --target /opt/xos/lib/xos-genx/xosgenx/targets/./xosserviceapitests.xtarget /opt/xos/dynamic_services/\$i/\$i.xproto /opt/xos/core/models/core.xproto'" > $WORKSPACE/cord/test/cord-tester/src/test/cord-api/Tests/\$i\$testname; done
327
328 for i in \$SERVICES; do bash -c "docker exec -i \$CORE_CONTAINER /bin/bash -c 'xosgenx --target /opt/xos/lib/xos-genx/xosgenx/targets/./xoslibrary.xtarget /opt/xos/dynamic_services/\$i/\$i.xproto /opt/xos/core/models/core.xproto'" > $WORKSPACE/cord/test/cord-tester/src/test/cord-api/Tests/\$i\$library; done
329 fi
330 """
Kailash Khalasi54170812018-05-24 12:50:22 -0700331 }
Kailash Khalasi54170812018-05-24 12:50:22 -0700332 }
Zack Williamsfd87d652018-07-12 14:21:12 -0700333
334 stage('test') {
335 steps {
336 sh """
337 pushd cord/test/cord-tester/src/test/cord-api/Tests
338
339 CORE_CONTAINER=\$(docker ps | grep k8s_xos-core | awk '{print \$1}')
340 CHAM_CONTAINER=\$(docker ps | grep k8s_xos-chameleon | awk '{print \$1}')
341 XOS_CHAMELEON=\$(docker exec \$CHAM_CONTAINER ip a | grep -oE "([0-9]{1,3}\\.){3}[0-9]{1,3}\\b" | grep 172)
342
343 cd $WORKSPACE/cord/test/cord-tester/src/test/cord-api/Properties/
344 sed -i \"s/^\\(SERVER_IP = \\).*/\\1\'\$XOS_CHAMELEON\'/\" RestApiProperties.py
345 sed -i \"s/^\\(SERVER_PORT = \\).*/\\1\'9101\'/\" RestApiProperties.py
346 sed -i \"s/^\\(XOS_USER = \\).*/\\1\'admin@opencord.org\'/\" RestApiProperties.py
347 sed -i \"s/^\\(XOS_PASSWD = \\).*/\\1\'letmein\'/\" RestApiProperties.py
348 sed -i \"s/^\\(PASSWD = \\).*/\\1\'letmein\'/\" RestApiProperties.py
349
350 cd $WORKSPACE/cord/test/cord-tester/src/test/cord-api/Tests
Kailash Khalasi07c97a42018-08-06 12:15:43 -0700351 pybot -d Log -T XOSCoreAPITests.robot || true
Zack Williamsfd87d652018-07-12 14:21:12 -0700352
353 # do additional tests if services are loaded
354 if ! [[ "$GERRIT_PROJECT" =~ ^(xos|xos-tosca|cord-tester|helm-charts)\$ ]]; then
355 export testname=_service_api.robot
356 export library=_library.robot
357 SERVICES=\$(docker exec -i \$CORE_CONTAINER /bin/bash -c "cd /opt/xos/dynamic_services/;find -name '*.xproto'" | awk -F[//] '{print \$2}')
358 echo \$SERVICES
359
Kailash Khalasi07c97a42018-08-06 12:15:43 -0700360 for i in \$SERVICES; do bash -c "pybot -d Log -T -v TESTLIBRARY:\$i\$library \$i\$testname"; sleep 2; done || true
Zack Williamsfd87d652018-07-12 14:21:12 -0700361 fi
362
363 popd
364 """
365 }
366 }
367
Kailash Khalasi54170812018-05-24 12:50:22 -0700368 stage('Publish') {
Zack Williamsfd87d652018-07-12 14:21:12 -0700369 steps {
370 sh """
371 if [ -d RobotLogs ]; then rm -r RobotLogs; fi; mkdir RobotLogs
372 cp -r $WORKSPACE/cord/test/cord-tester/src/test/cord-api/Tests/Log/*ml ./RobotLogs
373 """
Zack Williamsc8cfb222018-07-05 13:29:28 -0700374
Zack Williamsfd87d652018-07-12 14:21:12 -0700375 step([$class: 'RobotPublisher',
376 disableArchiveOutput: false,
377 logFileName: 'RobotLogs/log*.html',
378 otherFiles: '',
379 outputFileName: 'RobotLogs/output*.xml',
380 outputPath: '.',
Kailash Khalasiad6cfda2018-07-25 11:31:35 -0700381 passThreshold: 100,
Zack Williamsfd87d652018-07-12 14:21:12 -0700382 reportFileName: 'RobotLogs/report*.html',
383 unstableThreshold: 0]);
384 }
Kailash Khalasi54170812018-05-24 12:50:22 -0700385 }
Zack Williamsfd87d652018-07-12 14:21:12 -0700386
387 }
388
389 post {
390 always {
391 sh '''
Kailash Khalasiecb4eb62018-07-31 15:20:19 -0700392 for pod in \$(kubectl get pods --no-headers | awk '{print \$1}');
393 do
394 kubectl logs \$pod > $WORKSPACE/\$pod.log;
395 done
396
Zack Williamsfd87d652018-07-12 14:21:12 -0700397 kubectl get pods --all-namespaces
398
399 echo "# removing helm deployments"
400 kubectl get pods
401 helm list
402
403 for hchart in \$(helm list -q);
404 do
405 echo "## Purging chart: \${hchart} ##"
406 helm delete --purge "\${hchart}"
407 done
408
Zack Williamsf8b356c2018-07-17 17:01:27 -0700409 sudo minikube delete
Zack Williamsfd87d652018-07-12 14:21:12 -0700410 '''
Kailash Khalasiecb4eb62018-07-31 15:20:19 -0700411 archiveArtifacts artifacts: '*.log'
Zack Williamsfd87d652018-07-12 14:21:12 -0700412 step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "suchitra@opennetworking.org, you@opennetworking.org, kailash@opennetworking.org", sendToIndividuals: false])
413 }
414 }
Kailash Khalasi54170812018-05-24 12:50:22 -0700415}