Kailash Khalasi | 5417081 | 2018-05-24 12:50:22 -0700 | [diff] [blame] | 1 | // 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 Williams | 9d68aa3 | 2018-07-12 11:50:37 -0700 | [diff] [blame] | 15 | // Run XOS api tests on HEAD of a branch (usually master), loading the |
| 16 | // corresponding charts |
| 17 | |
Kailash Khalasi | 5417081 | 2018-05-24 12:50:22 -0700 | [diff] [blame] | 18 | CORE_CONTAINER="null" |
| 19 | |
| 20 | pipeline { |
| 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 Williams | 0efdd26 | 2018-06-28 14:17:29 -0700 | [diff] [blame] | 50 | #!/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 Williams | 2d0ac6b | 2018-06-29 09:17:41 -0700 | [diff] [blame] | 55 | releaseversion=0 |
Zack Williams | 0efdd26 | 2018-06-28 14:17:29 -0700 | [diff] [blame] | 56 | |
| 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 Khalasi | 5417081 | 2018-05-24 12:50:22 -0700 | [diff] [blame] | 83 | pushd cord |
| 84 | PROJECT_PATH=\$(xmllint --xpath "string(//project[@name=\\\"${gerritProject}\\\"]/@path)" .repo/manifest.xml) |
| 85 | repo download "\$PROJECT_PATH" "${gerritChangeNumber}/${gerritPatchsetNumber}" |
Zack Williams | 0efdd26 | 2018-06-28 14:17:29 -0700 | [diff] [blame] | 86 | |
| 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 Khalasi | 5417081 | 2018-05-24 12:50:22 -0700 | [diff] [blame] | 106 | popd |
Zack Williams | 0efdd26 | 2018-06-28 14:17:29 -0700 | [diff] [blame] | 107 | popd |
| 108 | """ |
Kailash Khalasi | 5417081 | 2018-05-24 12:50:22 -0700 | [diff] [blame] | 109 | } |
| 110 | } |
| 111 | |
Zack Williams | 0efdd26 | 2018-06-28 14:17:29 -0700 | [diff] [blame] | 112 | |
Kailash Khalasi | 5417081 | 2018-05-24 12:50:22 -0700 | [diff] [blame] | 113 | stage('prep') { |
| 114 | parallel { |
| 115 | |
| 116 | stage('images') { |
| 117 | steps { |
| 118 | sh ''' |
Kailash Khalasi | 934d39b | 2018-05-30 10:59:49 -0700 | [diff] [blame] | 119 | pushd cord/automation-tools/developer |
Zack Williams | a318503 | 2018-07-03 17:38:33 -0700 | [diff] [blame] | 120 | mkdir ib_logs |
Zack Williams | 7fea572 | 2018-07-03 21:17:47 -0700 | [diff] [blame] | 121 | ./imagebuilder.py -l ib_logs -a ib_actions.yml -g ib_graph.dot -f ../../helm-charts/examples/filter-images.yaml |
Kailash Khalasi | 5417081 | 2018-05-24 12:50:22 -0700 | [diff] [blame] | 122 | popd |
| 123 | ''' |
Zack Williams | a318503 | 2018-07-03 17:38:33 -0700 | [diff] [blame] | 124 | 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 Khalasi | 5417081 | 2018-05-24 12:50:22 -0700 | [diff] [blame] | 125 | } |
| 126 | } |
| 127 | |
| 128 | stage('minikube') { |
| 129 | steps { |
| 130 | /* see https://github.com/kubernetes/minikube/#linux-continuous-integration-without-vm-support */ |
| 131 | sh ''' |
| 132 | export MINIKUBE_WANTUPDATENOTIFICATION=false |
| 133 | export MINIKUBE_WANTREPORTERRORPROMPT=false |
| 134 | export CHANGE_MINIKUBE_NONE_USER=true |
| 135 | export MINIKUBE_HOME=$HOME |
| 136 | mkdir -p $HOME/.kube || true |
| 137 | touch $HOME/.kube/config |
| 138 | export KUBECONFIG=$HOME/.kube/config |
| 139 | sudo -E /usr/bin/minikube start --vm-driver=none |
| 140 | ''' |
| 141 | script { |
| 142 | timeout(3) { |
| 143 | waitUntil { |
| 144 | sleep 5 |
| 145 | def kc_ret = sh script: "kubectl get po", returnStatus: true |
| 146 | return (kc_ret == 0); |
| 147 | } |
| 148 | } |
| 149 | } |
| 150 | } |
| 151 | } |
| 152 | } |
| 153 | } |
Zack Williams | fd87d65 | 2018-07-12 14:21:12 -0700 | [diff] [blame] | 154 | |
Kailash Khalasi | 5417081 | 2018-05-24 12:50:22 -0700 | [diff] [blame] | 155 | stage('helm') { |
| 156 | steps { |
| 157 | sh ''' |
| 158 | helm init |
| 159 | sleep 60 |
| 160 | helm repo add incubator https://kubernetes-charts-incubator.storage.googleapis.com/ |
| 161 | ''' |
| 162 | } |
| 163 | } |
Zack Williams | fd87d65 | 2018-07-12 14:21:12 -0700 | [diff] [blame] | 164 | |
| 165 | stage('build') { |
Kailash Khalasi | 5417081 | 2018-05-24 12:50:22 -0700 | [diff] [blame] | 166 | steps { |
| 167 | sh """ |
Zack Williams | c8cfb22 | 2018-07-05 13:29:28 -0700 | [diff] [blame] | 168 | #!/usr/bin/env bash |
| 169 | set -eu -o pipefail |
Kailash Khalasi | 12b2e22 | 2018-06-13 09:45:25 -0700 | [diff] [blame] | 170 | |
Zack Williams | c8cfb22 | 2018-07-05 13:29:28 -0700 | [diff] [blame] | 171 | helm_install_args='-f examples/image-tag-candidate.yaml -f examples/imagePullPolicy-IfNotPresent.yaml -f examples/api-test-values.yaml' |
Zack Williams | c8cfb22 | 2018-07-05 13:29:28 -0700 | [diff] [blame] | 172 | |
| 173 | pushd cord/helm-charts |
| 174 | |
| 175 | helm dep up xos-core |
| 176 | helm install \${helm_install_args} xos-core -n xos-core |
| 177 | |
| 178 | # Pick which chart(s) to load depending on the project being tested |
| 179 | # In regex, please list repos in same order as requirements.yaml in the chart(s) loaded! |
| 180 | |
| 181 | if [[ "$GERRIT_PROJECT" =~ ^(rcord|onos-service|fabric|olt-service|vsg-hw|vrouter)\$ ]]; then |
| 182 | helm dep update xos-profiles/rcord-lite |
| 183 | helm install \${helm_install_args} xos-profiles/rcord-lite -n rcord-lite |
Zack Williams | c8cfb22 | 2018-07-05 13:29:28 -0700 | [diff] [blame] | 184 | |
| 185 | elif [[ "$GERRIT_PROJECT" =~ ^(vMME|vspgwc|vspgwu|vHSS|hss_db|internetemulator|sdn-controller|epc-service|mcord|progran)\$ ]]; then |
Zack Williams | ee86e66 | 2018-07-06 10:18:28 -0700 | [diff] [blame] | 186 | helm dep update xos-profiles/base-openstack |
Zack Williams | c8cfb22 | 2018-07-05 13:29:28 -0700 | [diff] [blame] | 187 | helm dep update xos-profiles/mcord |
Zack Williams | ee86e66 | 2018-07-06 10:18:28 -0700 | [diff] [blame] | 188 | helm install \${helm_install_args} xos-profiles/base-openstack -n base-openstack |
| 189 | helm install \${helm_install_args} xos-profiles/mcord -n mcord |
Zack Williams | c8cfb22 | 2018-07-05 13:29:28 -0700 | [diff] [blame] | 190 | |
| 191 | elif [[ "$GERRIT_PROJECT" =~ ^(openstack|vtn-service|exampleservice|addressmanager)\$ ]]; then |
| 192 | # NOTE: onos-service is included in base-openstack, but tested w/rcord-lite chart |
| 193 | |
| 194 | helm dep update xos-profiles/base-openstack |
| 195 | helm dep update xos-profiles/demo-exampleservice |
| 196 | helm install \${helm_install_args} xos-profiles/base-openstack -n base-openstack |
| 197 | helm install \${helm_install_args} xos-profiles/demo-exampleservice -n demo-exampleservice |
| 198 | |
| 199 | elif [[ "$GERRIT_PROJECT" =~ ^(kubernetes-service|simpleexampleservice)\$ ]]; then |
| 200 | helm dep update xos-profiles/base-kubernetes |
| 201 | helm dep update xos-profiles/demo-simpleexampleservice |
| 202 | helm install \${helm_install_args} xos-profiles/base-kubernetes -n base-kubernetes |
| 203 | helm install \${helm_install_args} xos-profiles/demo-simpleexampleservice -n demo-simpleexampleservice |
| 204 | |
| 205 | elif [[ "$GERRIT_PROJECT" =~ ^(hippie-oss)\$ ]]; then |
| 206 | helm dep update xos-services/hippie-oss |
| 207 | helm install \${helm_install_args} xos-services/hippie-oss -n hippie-oss |
| 208 | |
Matteo Scandolo | 85ce8fc | 2018-08-13 06:30:45 -0700 | [diff] [blame] | 209 | elif [[ "$GERRIT_PROJECT" =~ ^(att-workflow-driver)\$ ]]; then |
| 210 | helm dep update xos-services/att-workflow-driver |
| 211 | helm install \${helm_install_args} xos-services/att-workflow-driver -n att-workflow-driver |
| 212 | |
Zack Williams | 9d68aa3 | 2018-07-12 11:50:37 -0700 | [diff] [blame] | 213 | elif [[ "$GERRIT_PROJECT" =~ ^(xos|xos-tosca|cord-tester|helm-charts)\$ ]]; then |
Zack Williams | bafed36 | 2018-07-05 16:32:27 -0700 | [diff] [blame] | 214 | echo "No additional charts to install for testing $GERRIT_PROJECT" |
| 215 | |
Zack Williams | c8cfb22 | 2018-07-05 13:29:28 -0700 | [diff] [blame] | 216 | else |
| 217 | echo "Couldn't find a chart to test project: $GERRIT_PROJECT!" |
| 218 | exit 1 |
Kailash Khalasi | 5417081 | 2018-05-24 12:50:22 -0700 | [diff] [blame] | 219 | fi |
Zack Williams | c8cfb22 | 2018-07-05 13:29:28 -0700 | [diff] [blame] | 220 | |
Kailash Khalasi | 2bc499b | 2018-07-25 16:10:11 -0700 | [diff] [blame] | 221 | # wait for services to load |
Kailash Khalasi | edb48b1 | 2018-07-31 13:01:01 -0700 | [diff] [blame] | 222 | JOBS_TIMEOUT=900 ./scripts/wait_for_jobs.sh |
Zack Williams | c8cfb22 | 2018-07-05 13:29:28 -0700 | [diff] [blame] | 223 | |
| 224 | echo "# Checking helm deployments" |
Kailash Khalasi | 12b2e22 | 2018-06-13 09:45:25 -0700 | [diff] [blame] | 225 | kubectl get pods |
Zack Williams | c8cfb22 | 2018-07-05 13:29:28 -0700 | [diff] [blame] | 226 | helm list |
| 227 | |
| 228 | for hchart in \$(helm list -q); |
| 229 | do |
| 230 | echo "## 'helm status' for chart: \${hchart} ##" |
| 231 | helm status "\${hchart}" |
| 232 | done |
| 233 | |
Kailash Khalasi | 5417081 | 2018-05-24 12:50:22 -0700 | [diff] [blame] | 234 | popd |
Zack Williams | fd87d65 | 2018-07-12 14:21:12 -0700 | [diff] [blame] | 235 | """ |
Kailash Khalasi | 5417081 | 2018-05-24 12:50:22 -0700 | [diff] [blame] | 236 | } |
| 237 | } |
Kailash Khalasi | 512a7e5 | 2018-07-30 09:12:16 -0700 | [diff] [blame] | 238 | stage('wait for core') { |
| 239 | steps { |
| 240 | timeout(time:5) { |
| 241 | waitUntil { |
| 242 | script { |
| 243 | try { |
| 244 | sh """ |
| 245 | CORE_POD=\$(kubectl get pods | grep xos-core | awk '{print \$1}') |
| 246 | CHAM_POD=\$(kubectl get pods | grep chameleon | awk '{print \$1}') |
| 247 | CHAM_CONTAINER=\$(docker ps | grep k8s_xos-chameleon | awk '{print \$1}') |
| 248 | XOS_CHAMELEON=\$(docker exec \$CHAM_CONTAINER ip a | grep -oE "([0-9]{1,3}\\.){3}[0-9]{1,3}\\b" | grep 172) |
| 249 | kubectl logs \$CORE_POD | grep "XOS core entering wait loop" |
Kailash Khalasi | 512a7e5 | 2018-07-30 09:12:16 -0700 | [diff] [blame] | 250 | curl -I -u admin@opencord.org:letmein http://\$XOS_CHAMELEON:9101/xosapi/v1/core/users | grep "200 OK" |
Kailash Khalasi | 309872a | 2018-07-31 12:39:02 -0700 | [diff] [blame] | 251 | sleep 30 |
Kailash Khalasi | 25ee072 | 2018-07-30 14:26:41 -0700 | [diff] [blame] | 252 | curl -I -u admin@opencord.org:letmein http://\$XOS_CHAMELEON:9101/xosapi/v1/core/sites | grep "200 OK" |
| 253 | """ |
Kailash Khalasi | 512a7e5 | 2018-07-30 09:12:16 -0700 | [diff] [blame] | 254 | return true |
| 255 | } catch (exception) { |
| 256 | return false |
| 257 | } |
| 258 | } |
| 259 | } |
| 260 | } |
| 261 | } |
| 262 | } |
Zack Williams | fd87d65 | 2018-07-12 14:21:12 -0700 | [diff] [blame] | 263 | |
| 264 | stage('setup') { |
Kailash Khalasi | 5417081 | 2018-05-24 12:50:22 -0700 | [diff] [blame] | 265 | steps { |
| 266 | sh """ |
Zack Williams | fd87d65 | 2018-07-12 14:21:12 -0700 | [diff] [blame] | 267 | CORE_CONTAINER=\$(docker ps | grep k8s_xos-core | awk '{print \$1}') |
Zack Williams | c8cfb22 | 2018-07-05 13:29:28 -0700 | [diff] [blame] | 268 | |
Zack Williams | fd87d65 | 2018-07-12 14:21:12 -0700 | [diff] [blame] | 269 | 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 |
| 270 | 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 |
| 271 | 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 |
| 272 | 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 Williams | c8cfb22 | 2018-07-05 13:29:28 -0700 | [diff] [blame] | 273 | |
Zack Williams | fd87d65 | 2018-07-12 14:21:12 -0700 | [diff] [blame] | 274 | # create additional testing files if services are loaded |
| 275 | if ! [[ "$GERRIT_PROJECT" =~ ^(xos|xos-tosca|cord-tester|helm-charts)\$ ]]; then |
| 276 | export testname=_service_api.robot |
| 277 | export library=_library.robot |
Zack Williams | c8cfb22 | 2018-07-05 13:29:28 -0700 | [diff] [blame] | 278 | |
Zack Williams | fd87d65 | 2018-07-12 14:21:12 -0700 | [diff] [blame] | 279 | SERVICES=\$(docker exec -i \$CORE_CONTAINER /bin/bash -c "cd /opt/xos/dynamic_services/;find -name '*.xproto'" | awk -F[//] '{print \$2}') |
| 280 | echo \$SERVICES |
Zack Williams | c8cfb22 | 2018-07-05 13:29:28 -0700 | [diff] [blame] | 281 | |
Zack Williams | fd87d65 | 2018-07-12 14:21:12 -0700 | [diff] [blame] | 282 | 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 |
| 283 | |
| 284 | 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 |
| 285 | fi |
| 286 | """ |
Kailash Khalasi | 5417081 | 2018-05-24 12:50:22 -0700 | [diff] [blame] | 287 | } |
Kailash Khalasi | 5417081 | 2018-05-24 12:50:22 -0700 | [diff] [blame] | 288 | } |
Zack Williams | fd87d65 | 2018-07-12 14:21:12 -0700 | [diff] [blame] | 289 | |
| 290 | stage('test') { |
| 291 | steps { |
| 292 | sh """ |
| 293 | pushd cord/test/cord-tester/src/test/cord-api/Tests |
| 294 | |
| 295 | CORE_CONTAINER=\$(docker ps | grep k8s_xos-core | awk '{print \$1}') |
| 296 | CHAM_CONTAINER=\$(docker ps | grep k8s_xos-chameleon | awk '{print \$1}') |
| 297 | XOS_CHAMELEON=\$(docker exec \$CHAM_CONTAINER ip a | grep -oE "([0-9]{1,3}\\.){3}[0-9]{1,3}\\b" | grep 172) |
| 298 | |
| 299 | cd $WORKSPACE/cord/test/cord-tester/src/test/cord-api/Properties/ |
| 300 | sed -i \"s/^\\(SERVER_IP = \\).*/\\1\'\$XOS_CHAMELEON\'/\" RestApiProperties.py |
| 301 | sed -i \"s/^\\(SERVER_PORT = \\).*/\\1\'9101\'/\" RestApiProperties.py |
| 302 | sed -i \"s/^\\(XOS_USER = \\).*/\\1\'admin@opencord.org\'/\" RestApiProperties.py |
| 303 | sed -i \"s/^\\(XOS_PASSWD = \\).*/\\1\'letmein\'/\" RestApiProperties.py |
| 304 | sed -i \"s/^\\(PASSWD = \\).*/\\1\'letmein\'/\" RestApiProperties.py |
| 305 | |
| 306 | cd $WORKSPACE/cord/test/cord-tester/src/test/cord-api/Tests |
Kailash Khalasi | 07c97a4 | 2018-08-06 12:15:43 -0700 | [diff] [blame] | 307 | pybot -d Log -T XOSCoreAPITests.robot || true |
Zack Williams | fd87d65 | 2018-07-12 14:21:12 -0700 | [diff] [blame] | 308 | |
| 309 | # do additional tests if services are loaded |
| 310 | if ! [[ "$GERRIT_PROJECT" =~ ^(xos|xos-tosca|cord-tester|helm-charts)\$ ]]; then |
| 311 | export testname=_service_api.robot |
| 312 | export library=_library.robot |
| 313 | SERVICES=\$(docker exec -i \$CORE_CONTAINER /bin/bash -c "cd /opt/xos/dynamic_services/;find -name '*.xproto'" | awk -F[//] '{print \$2}') |
| 314 | echo \$SERVICES |
| 315 | |
Kailash Khalasi | 07c97a4 | 2018-08-06 12:15:43 -0700 | [diff] [blame] | 316 | for i in \$SERVICES; do bash -c "pybot -d Log -T -v TESTLIBRARY:\$i\$library \$i\$testname"; sleep 2; done || true |
Zack Williams | fd87d65 | 2018-07-12 14:21:12 -0700 | [diff] [blame] | 317 | fi |
| 318 | |
| 319 | popd |
| 320 | """ |
| 321 | } |
| 322 | } |
| 323 | |
Kailash Khalasi | 5417081 | 2018-05-24 12:50:22 -0700 | [diff] [blame] | 324 | stage('Publish') { |
Zack Williams | fd87d65 | 2018-07-12 14:21:12 -0700 | [diff] [blame] | 325 | steps { |
| 326 | sh """ |
| 327 | if [ -d RobotLogs ]; then rm -r RobotLogs; fi; mkdir RobotLogs |
| 328 | cp -r $WORKSPACE/cord/test/cord-tester/src/test/cord-api/Tests/Log/*ml ./RobotLogs |
| 329 | """ |
Zack Williams | c8cfb22 | 2018-07-05 13:29:28 -0700 | [diff] [blame] | 330 | |
Zack Williams | fd87d65 | 2018-07-12 14:21:12 -0700 | [diff] [blame] | 331 | step([$class: 'RobotPublisher', |
| 332 | disableArchiveOutput: false, |
| 333 | logFileName: 'RobotLogs/log*.html', |
| 334 | otherFiles: '', |
| 335 | outputFileName: 'RobotLogs/output*.xml', |
| 336 | outputPath: '.', |
Kailash Khalasi | ad6cfda | 2018-07-25 11:31:35 -0700 | [diff] [blame] | 337 | passThreshold: 100, |
Zack Williams | fd87d65 | 2018-07-12 14:21:12 -0700 | [diff] [blame] | 338 | reportFileName: 'RobotLogs/report*.html', |
| 339 | unstableThreshold: 0]); |
| 340 | } |
Kailash Khalasi | 5417081 | 2018-05-24 12:50:22 -0700 | [diff] [blame] | 341 | } |
Zack Williams | fd87d65 | 2018-07-12 14:21:12 -0700 | [diff] [blame] | 342 | |
| 343 | } |
| 344 | |
| 345 | post { |
| 346 | always { |
| 347 | sh ''' |
Kailash Khalasi | ecb4eb6 | 2018-07-31 15:20:19 -0700 | [diff] [blame] | 348 | for pod in \$(kubectl get pods --no-headers | awk '{print \$1}'); |
| 349 | do |
| 350 | kubectl logs \$pod > $WORKSPACE/\$pod.log; |
| 351 | done |
| 352 | |
Zack Williams | fd87d65 | 2018-07-12 14:21:12 -0700 | [diff] [blame] | 353 | kubectl get pods --all-namespaces |
| 354 | |
| 355 | echo "# removing helm deployments" |
| 356 | kubectl get pods |
| 357 | helm list |
| 358 | |
| 359 | for hchart in \$(helm list -q); |
| 360 | do |
| 361 | echo "## Purging chart: \${hchart} ##" |
| 362 | helm delete --purge "\${hchart}" |
| 363 | done |
| 364 | |
Zack Williams | f8b356c | 2018-07-17 17:01:27 -0700 | [diff] [blame] | 365 | sudo minikube delete |
Zack Williams | fd87d65 | 2018-07-12 14:21:12 -0700 | [diff] [blame] | 366 | ''' |
Kailash Khalasi | ecb4eb6 | 2018-07-31 15:20:19 -0700 | [diff] [blame] | 367 | archiveArtifacts artifacts: '*.log' |
Zack Williams | fd87d65 | 2018-07-12 14:21:12 -0700 | [diff] [blame] | 368 | step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "suchitra@opennetworking.org, you@opennetworking.org, kailash@opennetworking.org", sendToIndividuals: false]) |
| 369 | } |
| 370 | } |
Kailash Khalasi | 5417081 | 2018-05-24 12:50:22 -0700 | [diff] [blame] | 371 | } |