blob: 52e57727cfd57e7682bf2154ae9dc4fd4fa24769 [file] [log] [blame]
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -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
Matteo Scandolo0d0f2902021-07-15 16:16:33 -070015library identifier: 'cord-jenkins-libraries@master',
16 retriever: modernSCM([
17 $class: 'GitSCMSource',
18 remote: 'https://gerrit.opencord.org/ci-management.git'
19])
20
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -070021node {
22 // Need this so that deployment_config has global scope when it's read later
23 deployment_config = null
24}
25
Hardik Windlass806505d2021-10-27 08:15:48 +000026def infraNamespace = "infra"
27def volthaNamespace = "voltha"
28
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -070029pipeline {
30 /* no label, executor is determined by JJB */
31 agent {
32 label "${params.buildNode}"
33 }
34 options {
Hardik Windlassd0f01662021-09-03 08:07:15 +000035 timeout(time: "${timeout}", unit: 'MINUTES')
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -070036 }
37
38 environment {
39 KUBECONFIG="$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf"
40 VOLTCONFIG="$HOME/.volt/config-minimal"
41 PATH="$WORKSPACE/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
42 }
43
44 stages {
Matteo Scandolo3dce2a12020-09-15 14:21:14 -070045 stage('Clone voltha-system-tests') {
46 steps {
Matteo Scandolo67842812021-07-13 16:52:13 -070047 step([$class: 'WsCleanup'])
Matteo Scandolo3dce2a12020-09-15 14:21:14 -070048 checkout([
49 $class: 'GitSCM',
50 userRemoteConfigs: [[
51 url: "https://gerrit.opencord.org/voltha-system-tests",
Matteo Scandoloa42c6f52020-09-19 01:35:12 +000052 refspec: "${volthaSystemTestsChange}"
Matteo Scandolo3dce2a12020-09-15 14:21:14 -070053 ]],
Suchitra Vemuri1143ae32021-03-26 01:08:37 +000054 branches: [[ name: "${branch}", ]],
Matteo Scandolo3dce2a12020-09-15 14:21:14 -070055 extensions: [
56 [$class: 'WipeWorkspace'],
57 [$class: 'RelativeTargetDirectory', relativeTargetDir: "voltha-system-tests"],
58 [$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: false],
59 ],
60 ])
Suchitra Vemuria38e5412021-02-23 15:28:28 -080061 script {
62 sh(script:"""
63 if [ '${volthaSystemTestsChange}' != '' ] ; then
64 cd $WORKSPACE/voltha-system-tests;
65 git fetch https://gerrit.opencord.org/voltha-system-tests ${volthaSystemTestsChange} && git checkout FETCH_HEAD
66 fi
67 """)
68 }
Matteo Scandolo3dce2a12020-09-15 14:21:14 -070069 }
70 }
Matteo Scandolo3dce2a12020-09-15 14:21:14 -070071 stage ('Initialize') {
72 steps {
Hardik Windlass6f854a12021-07-12 13:20:21 +000073 sh returnStdout: false, script: "git clone -b ${branch} ${cordRepoUrl}/${configBaseDir}"
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -070074 script {
75 deployment_config = readYaml file: "${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml"
76 }
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -070077 sh returnStdout: false, script: """
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -070078 mkdir -p $WORKSPACE/bin
79 bash <( curl -sfL https://raw.githubusercontent.com/boz/kail/master/godownloader.sh) -b "$WORKSPACE/bin"
80 cd $WORKSPACE
Hardik Windlass6f854a12021-07-12 13:20:21 +000081 if [ "${params.branch}" == "voltha-2.8" ]; then
Hardik Windlasse2175102021-07-23 08:34:32 +000082 VOLTCTL_VERSION=1.6.11
Suchitra Vemuri13421432020-06-05 17:34:33 -070083 else
Matteo Scandolo3dce2a12020-09-15 14:21:14 -070084 VOLTCTL_VERSION=\$(curl -sSL https://api.github.com/repos/opencord/voltctl/releases/latest | jq -r .tag_name | sed -e 's/^v//g')
Suchitra Vemuri13421432020-06-05 17:34:33 -070085 fi
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -070086
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -070087 HOSTOS=\$(uname -s | tr "[:upper:]" "[:lower:"])
88 HOSTARCH=\$(uname -m | tr "[:upper:]" "[:lower:"])
89 if [ \$HOSTARCH == "x86_64" ]; then
90 HOSTARCH="amd64"
91 fi
Matteo Scandolo3dce2a12020-09-15 14:21:14 -070092 curl -o $WORKSPACE/bin/voltctl -sSL https://github.com/opencord/voltctl/releases/download/v\${VOLTCTL_VERSION}/voltctl-\${VOLTCTL_VERSION}-\${HOSTOS}-\${HOSTARCH}
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -070093 chmod 755 $WORKSPACE/bin/voltctl
94 voltctl version --clientonly
Andrea Campanella9b234332020-04-24 12:22:18 +020095
Matteo Scandolo3fbb0652020-07-22 08:50:02 -070096
Andrea Campanella9b234332020-04-24 12:22:18 +020097 # Default kind-voltha config doesn't work on ONF demo pod for accessing kvstore.
98 # The issue is that the mgmt node is also one of the k8s nodes and so port forwarding doesn't work.
99 # We should change this. In the meantime here is a workaround.
Suchitra Vemuri13421432020-06-05 17:34:33 -0700100 if [ "${params.branch}" == "master" ]; then
101 set +e
Andrea Campanella9b234332020-04-24 12:22:18 +0200102
Andrea Campanella9b234332020-04-24 12:22:18 +0200103
104 # Remove noise from voltha-core logs
Suchitra Vemuria2a7f2c2020-06-08 14:05:06 -0700105 voltctl log level set WARN read-write-core#github.com/opencord/voltha-go/db/model
106 voltctl log level set WARN read-write-core#github.com/opencord/voltha-lib-go/v3/pkg/kafka
Andrea Campanella9b234332020-04-24 12:22:18 +0200107 # Remove noise from openolt logs
Suchitra Vemuria2a7f2c2020-06-08 14:05:06 -0700108 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/db
109 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/probe
110 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/kafka
Suchitra Vemuri13421432020-06-05 17:34:33 -0700111 fi
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700112 """
113 }
114 }
115
116 stage('Functional Tests') {
117 environment {
Suchitra Vemurie4a5bcc2020-03-16 12:43:03 -0700118 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml"
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700119 ROBOT_FILE="Voltha_DT_PODTests.robot"
Andrea Campanellad924ce22020-04-20 16:40:41 +0200120 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/dt-workflow/FunctionalTests"
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700121 }
122 steps {
123 sh """
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700124 mkdir -p $ROBOT_LOGS_DIR
Suchitra Vemuri627786a2020-06-18 16:52:05 -0700125 if ( ${powerSwitch} ); then
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100126 export ROBOT_MISC_ARGS="--removekeywords wuks -i PowerSwitch -i sanityDt -i functionalDt -e bbsim -e notready -d $ROBOT_LOGS_DIR -v POD_NAME:${configFileName} -v KUBERNETES_CONFIGS_DIR:$WORKSPACE/${configBaseDir}/${configKubernetesDir} -v container_log_dir:$WORKSPACE -v OLT_ADAPTER_APP_LABEL:${oltAdapterAppLabel}"
Suchitra Vemuri627786a2020-06-18 16:52:05 -0700127 else
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100128 export ROBOT_MISC_ARGS="--removekeywords wuks -e PowerSwitch -i sanityDt -i functionalDt -e bbsim -e notready -d $ROBOT_LOGS_DIR -v POD_NAME:${configFileName} -v KUBERNETES_CONFIGS_DIR:$WORKSPACE/${configBaseDir}/${configKubernetesDir} -v container_log_dir:$WORKSPACE -v OLT_ADAPTER_APP_LABEL:${oltAdapterAppLabel}"
Suchitra Vemuri627786a2020-06-18 16:52:05 -0700129 fi
Hardik Windlass806505d2021-10-27 08:15:48 +0000130 ROBOT_MISC_ARGS+=" -v NAMESPACE:${volthaNamespace} -v INFRA_NAMESPACE:${infraNamespace}"
Matteo Scandolo3dce2a12020-09-15 14:21:14 -0700131 make -C $WORKSPACE/voltha-system-tests voltha-dt-test || true
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700132 """
133 }
134 }
Andrea Campanellad924ce22020-04-20 16:40:41 +0200135
Andrea Campanellaf47a1982020-04-21 11:53:31 +0200136 stage('Failure/Recovery Tests') {
137 environment {
138 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml"
139 ROBOT_FILE="Voltha_DT_FailureScenarios.robot"
140 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/dt-workflow/FailureScenarios"
141 }
142 steps {
143 sh """
144 mkdir -p $ROBOT_LOGS_DIR
145 if ( ${powerSwitch} ); then
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100146 export ROBOT_MISC_ARGS="--removekeywords wuks -L TRACE -i functionalDt -i PowerSwitch -e bbsim -e notready -d $ROBOT_LOGS_DIR -v POD_NAME:${configFileName} -v KUBERNETES_CONFIGS_DIR:$WORKSPACE/${configBaseDir}/${configKubernetesDir} -v container_log_dir:$WORKSPACE -v OLT_ADAPTER_APP_LABEL:${oltAdapterAppLabel}"
Andrea Campanellaf47a1982020-04-21 11:53:31 +0200147 else
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100148 export ROBOT_MISC_ARGS="--removekeywords wuks -L TRACE -i functionalDt -e PowerSwitch -e bbsim -e notready -d $ROBOT_LOGS_DIR -v POD_NAME:${configFileName} -v KUBERNETES_CONFIGS_DIR:$WORKSPACE/${configBaseDir}/${configKubernetesDir} -v container_log_dir:$WORKSPACE -v OLT_ADAPTER_APP_LABEL:${oltAdapterAppLabel}"
Andrea Campanellaf47a1982020-04-21 11:53:31 +0200149 fi
Hardik Windlass806505d2021-10-27 08:15:48 +0000150 ROBOT_MISC_ARGS+=" -v NAMESPACE:${volthaNamespace} -v INFRA_NAMESPACE:${infraNamespace}"
Matteo Scandolo3dce2a12020-09-15 14:21:14 -0700151 make -C $WORKSPACE/voltha-system-tests voltha-dt-test || true
Andrea Campanellaf47a1982020-04-21 11:53:31 +0200152 """
153 }
154 }
155
Andy Bavier5ad87c92020-05-11 16:31:35 -0700156 stage('Dataplane Tests') {
157 environment {
Andy Bavier1541da82020-05-15 09:41:38 -0700158 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml"
Andy Bavier5ad87c92020-05-11 16:31:35 -0700159 ROBOT_FILE="Voltha_DT_PODTests.robot"
160 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/dt-workflow/DataplaneTests"
161 }
162 steps {
163 sh """
164 mkdir -p $ROBOT_LOGS_DIR
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100165 export ROBOT_MISC_ARGS="--removekeywords wuks -i dataplaneDt -e bbsim -e notready -d $ROBOT_LOGS_DIR -v POD_NAME:${configFileName} -v KUBERNETES_CONFIGS_DIR:$WORKSPACE/${configBaseDir}/${configKubernetesDir} -v container_log_dir:$WORKSPACE -v OLT_ADAPTER_APP_LABEL:${oltAdapterAppLabel}"
Hardik Windlass806505d2021-10-27 08:15:48 +0000166 ROBOT_MISC_ARGS+=" -v NAMESPACE:${volthaNamespace} -v INFRA_NAMESPACE:${infraNamespace}"
Matteo Scandolo3dce2a12020-09-15 14:21:14 -0700167 make -C $WORKSPACE/voltha-system-tests voltha-dt-test || true
Andy Bavier5ad87c92020-05-11 16:31:35 -0700168 """
169 }
170 }
Suchitra Vemuri5e8e7892020-09-14 16:04:12 -0700171 stage('HA Tests') {
172 environment {
173 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml"
174 ROBOT_FILE="Voltha_ONOSHATests.robot"
175 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/ONOSHAScenarios"
176 }
177 steps {
Matteo Scandolo67842812021-07-13 16:52:13 -0700178 sh """
179 mkdir -p $ROBOT_LOGS_DIR
180 export ROBOT_MISC_ARGS="--removekeywords wuks -L TRACE -e bbsim -e notready -d $ROBOT_LOGS_DIR -v POD_NAME:${configFileName} -v workflow:${params.workFlow} -v KUBERNETES_CONFIGS_DIR:$WORKSPACE/${configBaseDir}/${configKubernetesDir} -v container_log_dir:$WORKSPACE -v OLT_ADAPTER_APP_LABEL:${oltAdapterAppLabel}"
Hardik Windlass806505d2021-10-27 08:15:48 +0000181 ROBOT_MISC_ARGS+=" -v NAMESPACE:${volthaNamespace} -v INFRA_NAMESPACE:${infraNamespace}"
Matteo Scandolo67842812021-07-13 16:52:13 -0700182 make -C $WORKSPACE/voltha-system-tests voltha-test || true
183 """
Suchitra Vemuri5e8e7892020-09-14 16:04:12 -0700184 }
185 }
Andy Bavier5ad87c92020-05-11 16:31:35 -0700186
Suchitra Vemuri0a9c8c62020-12-07 18:24:31 -0800187 stage('Multiple OLT Tests') {
188 environment {
189 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml"
190 ROBOT_FILE="Voltha_DT_MultiOLT_Tests.robot"
191 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/dt-workflow/MultipleOLTScenarios"
192 }
193 steps {
194 sh """
195 mkdir -p $ROBOT_LOGS_DIR
196 if ( ${powerSwitch} ); then
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100197 export ROBOT_MISC_ARGS="--removekeywords wuks -L TRACE -i functionalDt -i PowerSwitch -e bbsim -e notready -d $ROBOT_LOGS_DIR -v POD_NAME:${configFileName} -v KUBERNETES_CONFIGS_DIR:$WORKSPACE/${configBaseDir}/${configKubernetesDir} -v container_log_dir:$WORKSPACE -v OLT_ADAPTER_APP_LABEL:${oltAdapterAppLabel}"
Suchitra Vemuri0a9c8c62020-12-07 18:24:31 -0800198 else
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100199 export ROBOT_MISC_ARGS="--removekeywords wuks -L TRACE -i functionalDt -e PowerSwitch -e bbsim -e notready -d $ROBOT_LOGS_DIR -v POD_NAME:${configFileName} -v KUBERNETES_CONFIGS_DIR:$WORKSPACE/${configBaseDir}/${configKubernetesDir} -v container_log_dir:$WORKSPACE -v OLT_ADAPTER_APP_LABEL:${oltAdapterAppLabel}"
Suchitra Vemuri0a9c8c62020-12-07 18:24:31 -0800200 fi
Hardik Windlass806505d2021-10-27 08:15:48 +0000201 ROBOT_MISC_ARGS+=" -v NAMESPACE:${volthaNamespace} -v INFRA_NAMESPACE:${infraNamespace}"
Suchitra Vemuri0a9c8c62020-12-07 18:24:31 -0800202 make -C $WORKSPACE/voltha-system-tests voltha-dt-test || true
203 """
204 }
205 }
206
207
Andrea Campanellad924ce22020-04-20 16:40:41 +0200208 stage('Error Scenario Tests') {
209 environment {
210 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml"
211 ROBOT_FILE="Voltha_ErrorScenarios.robot"
212 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/dt-workflow/ErrorScenarios"
213 }
214 steps {
215 sh """
216 mkdir -p $ROBOT_LOGS_DIR
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100217 export ROBOT_MISC_ARGS="--removekeywords wuks -L TRACE -i functional -e bbsim -e notready -d $ROBOT_LOGS_DIR -v POD_NAME:${configFileName} -v workflow:${params.workFlow} -v KUBERNETES_CONFIGS_DIR:$WORKSPACE/${configBaseDir}/${configKubernetesDir} -v container_log_dir:$WORKSPACE -v OLT_ADAPTER_APP_LABEL:${oltAdapterAppLabel}"
Hardik Windlass806505d2021-10-27 08:15:48 +0000218 ROBOT_MISC_ARGS+=" -v NAMESPACE:${volthaNamespace} -v INFRA_NAMESPACE:${infraNamespace}"
Matteo Scandolo3dce2a12020-09-15 14:21:14 -0700219 make -C $WORKSPACE/voltha-system-tests voltha-test || true
Andrea Campanellad924ce22020-04-20 16:40:41 +0200220 """
221 }
Andrea Campanella71666372020-04-21 10:56:17 +0200222 }
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700223 }
224 post {
225 always {
226 sh returnStdout: false, script: '''
227 set +e
Matteo Scandolo97b12572020-04-13 12:44:46 -0700228 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\n'}" | sort | uniq
229 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.imageID}{'\\n'}" | sort | uniq
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700230 kubectl get nodes -o wide
231 kubectl get pods -n voltha -o wide
Suchitra Vemuri179643b2020-11-02 10:06:20 -0800232 kubectl get pods -o wide
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700233
Andrea Campanellaa20a9332021-03-09 09:18:42 +0100234 # store information on running charts
235 helm ls > $WORKSPACE/helm-list.txt || true
236
237 # store information on the running pods
Andrea Campanellae0c839f2021-03-16 17:53:40 +0100238 kubectl get pods --all-namespaces -o wide > $WORKSPACE/pods.txt || true
Andrea Campanellaa20a9332021-03-09 09:18:42 +0100239 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\n'}" | sort | uniq | tee $WORKSPACE/pod-images.txt || true
240 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.imageID}{'\\n'}" | sort | uniq | tee $WORKSPACE/pod-imagesId.txt || true
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700241 '''
242 script {
243 deployment_config.olts.each { olt ->
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100244 if (olt.type == null || olt.type == "" || olt.type == "openolt") {
245 sh returnStdout: false, script: """
246 sshpass -p ${olt.pass} scp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no ${olt.user}@${olt.sship}:/var/log/openolt.log $WORKSPACE/openolt-${olt.sship}.log || true
247 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/openolt-${olt.sship}.log # Remove escape sequences
248 sshpass -p ${olt.pass} scp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no ${olt.user}@${olt.sship}:/var/log/dev_mgmt_daemon.log $WORKSPACE/dev_mgmt_daemon-${olt.sship}.log || true
249 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/dev_mgmt_daemon-${olt.sship}.log # Remove escape sequences
250 sshpass -p ${olt.pass} scp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no ${olt.user}@${olt.sship}:/var/log/startup.log $WORKSPACE/startup-${olt.sship}.log || true
251 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/startup-${olt.sship}.log || true # Remove escape sequences
252 sshpass -p ${olt.pass} scp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no ${olt.user}@${olt.sship}:/var/log/openolt_process_watchdog.log $WORKSPACE/openolt_process_watchdog-${olt.sship}.log || true
253 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/openolt_process_watchdog-${olt.sship}.log || true # Remove escape sequences
254 """
255 }
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700256 }
257 }
258 step([$class: 'RobotPublisher',
259 disableArchiveOutput: false,
260 logFileName: '**/log*.html',
261 otherFiles: '',
262 outputFileName: '**/output*.xml',
263 outputPath: 'RobotLogs',
264 passThreshold: 100,
265 reportFileName: '**/report*.html',
Andrea Campanellaabc09772021-06-16 12:08:57 +0200266 unstableThreshold: 0,
267 onlyCritical: true
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700268 ]);
Matteo Scandolo67842812021-07-13 16:52:13 -0700269 archiveArtifacts artifacts: '**/*.log,**/*.tgz,*.txt'
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700270 }
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700271 }
272}