blob: 7ab29e2e5d7c08bf5f49e19f471bb10758a359ae [file] [log] [blame]
Joey Armstrong16bd8e82023-01-12 15:20:06 -05001#!/usr/bin/env groovy
2// -----------------------------------------------------------------------
Joey Armstrong6a9013e2024-02-01 17:56:57 -05003// Copyright 2017-2024 Open Networking Foundation (ONF) and the ONF Contributors
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -07004//
5// Licensed under the Apache License, Version 2.0 (the "License");
6// you may not use this file except in compliance with the License.
7// You may obtain a copy of the License at
8//
9// http://www.apache.org/licenses/LICENSE-2.0
10//
11// Unless required by applicable law or agreed to in writing, software
12// distributed under the License is distributed on an "AS IS" BASIS,
13// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14// See the License for the specific language governing permissions and
15// limitations under the License.
Joey Armstrong16bd8e82023-01-12 15:20:06 -050016// -----------------------------------------------------------------------
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -070017
Matteo Scandolo0d0f2902021-07-15 16:16:33 -070018library identifier: 'cord-jenkins-libraries@master',
19 retriever: modernSCM([
20 $class: 'GitSCMSource',
21 remote: 'https://gerrit.opencord.org/ci-management.git'
22])
23
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -070024node {
25 // Need this so that deployment_config has global scope when it's read later
26 deployment_config = null
27}
28
Hardik Windlass7e4e3152021-09-29 06:42:05 +000029def infraNamespace = "infra"
30def volthaNamespace = "voltha"
31
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -070032pipeline {
33 /* no label, executor is determined by JJB */
34 agent {
35 label "${params.buildNode}"
36 }
37 options {
Hardik Windlassd0f01662021-09-03 08:07:15 +000038 timeout(time: "${timeout}", unit: 'MINUTES')
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -070039 }
40
41 environment {
42 KUBECONFIG="$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf"
Jan Klarece1bc812023-09-28 13:15:52 +020043 VOLTCONFIG="$HOME/.volt/config"
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -070044 PATH="$WORKSPACE/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
45 }
46
47 stages {
Matteo Scandolo3dce2a12020-09-15 14:21:14 -070048 stage('Clone voltha-system-tests') {
49 steps {
Matteo Scandolo67842812021-07-13 16:52:13 -070050 step([$class: 'WsCleanup'])
Matteo Scandolo3dce2a12020-09-15 14:21:14 -070051 checkout([
52 $class: 'GitSCM',
53 userRemoteConfigs: [[
54 url: "https://gerrit.opencord.org/voltha-system-tests",
Matteo Scandoloa42c6f52020-09-19 01:35:12 +000055 refspec: "${volthaSystemTestsChange}"
Matteo Scandolo3dce2a12020-09-15 14:21:14 -070056 ]],
Suchitra Vemuri1143ae32021-03-26 01:08:37 +000057 branches: [[ name: "${branch}", ]],
Matteo Scandolo3dce2a12020-09-15 14:21:14 -070058 extensions: [
59 [$class: 'WipeWorkspace'],
60 [$class: 'RelativeTargetDirectory', relativeTargetDir: "voltha-system-tests"],
61 [$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: false],
62 ],
63 ])
Suchitra Vemuria38e5412021-02-23 15:28:28 -080064 script {
65 sh(script:"""
66 if [ '${volthaSystemTestsChange}' != '' ] ; then
67 cd $WORKSPACE/voltha-system-tests;
68 git fetch https://gerrit.opencord.org/voltha-system-tests ${volthaSystemTestsChange} && git checkout FETCH_HEAD
69 fi
70 """)
71 }
Matteo Scandolo3dce2a12020-09-15 14:21:14 -070072 }
73 }
Matteo Scandolo92a5cb62020-09-15 16:02:08 -070074 // This checkout allows us to show changes in Jenkins
75 // we only do this on master as we don't branch all the repos for all the releases
76 // (we should compute the difference by tracking the container version, not the code)
77 stage('Download All the VOLTHA repos') {
78 when {
79 expression {
80 return "${branch}" == 'master';
81 }
82 }
83 steps {
84 checkout(changelog: true,
85 poll: false,
86 scm: [$class: 'RepoScm',
87 manifestRepositoryUrl: "${params.manifestUrl}",
88 manifestBranch: "${params.branch}",
89 currentBranch: true,
90 destinationDir: 'voltha',
91 forceSync: true,
92 resetFirst: true,
93 quiet: true,
94 jobs: 4,
95 showAllChanges: true]
96 )
97 }
98 }
Matteo Scandolo3dce2a12020-09-15 14:21:14 -070099 stage ('Initialize') {
100 steps {
Hardik Windlass6f854a12021-07-12 13:20:21 +0000101 sh returnStdout: false, script: "git clone -b ${branch} ${cordRepoUrl}/${configBaseDir}"
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700102 script {
103 deployment_config = readYaml file: "${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml"
104 }
Hardik Windlass9658cd22021-10-25 11:13:25 +0000105 installVoltctl("${branch}")
Andrea Campanella9274f7d2021-11-18 15:42:06 -0800106 sh """
107 ps -ef | grep port-forward
108 """
109
110 sh returnStdout: false, script: '''
111 # remove orphaned port-forward from different namespaces
112 ps aux | grep port-forw | grep -v grep | awk '{print $2}' | xargs --no-run-if-empty kill -9 || true
113 '''
114 sh """
Andrea Campanella9274f7d2021-11-18 15:42:06 -0800115 JENKINS_NODE_COOKIE="dontKillMe" _TAG="kafka" bash -c "while true; do kubectl port-forward --address 0.0.0.0 -n ${infraNamespace} svc/voltha-infra-kafka 9092:9092; done"&
116 ps aux | grep port-forward
117 """
Joey Armstrong16bd8e82023-01-12 15:20:06 -0500118
119 sh("""ps -ef | grep port-forward""")
120
121 sh(returnStdout: false, script: """
122 mkdir -p "$WORKSPACE/bin"
123
124 # install kail
125 make -C "$WORKSPACE/voltha-system-tests" KAIL_PATH="$WORKSPACE/bin" kail
Matteo Scandolo3fbb0652020-07-22 08:50:02 -0700126
Andrea Campanella9b234332020-04-24 12:22:18 +0200127 # Default kind-voltha config doesn't work on ONF demo pod for accessing kvstore.
128 # The issue is that the mgmt node is also one of the k8s nodes and so port forwarding doesn't work.
129 # We should change this. In the meantime here is a workaround.
Suchitra Vemuri13421432020-06-05 17:34:33 -0700130 set +e
Andrea Campanella9b234332020-04-24 12:22:18 +0200131
Roger Luethi3dd65a72023-09-20 13:10:29 +0200132 # Have voltctl exit with error status 1 and warning if etcd is unavailable.
133 voltctl log level list
134
Andrea Campanella9b234332020-04-24 12:22:18 +0200135 # Remove noise from voltha-core logs
Suchitra Vemuria2a7f2c2020-06-08 14:05:06 -0700136 voltctl log level set WARN read-write-core#github.com/opencord/voltha-go/db/model
137 voltctl log level set WARN read-write-core#github.com/opencord/voltha-lib-go/v3/pkg/kafka
Andrea Campanella9b234332020-04-24 12:22:18 +0200138 # Remove noise from openolt logs
Suchitra Vemuria2a7f2c2020-06-08 14:05:06 -0700139 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/db
140 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/probe
141 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/kafka
Joey Armstrong16bd8e82023-01-12 15:20:06 -0500142 """)
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700143 }
144 }
145
146 stage('Functional Tests') {
147 environment {
Suchitra Vemurie4a5bcc2020-03-16 12:43:03 -0700148 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml"
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700149 ROBOT_FILE="Voltha_DT_PODTests.robot"
Andrea Campanellad924ce22020-04-20 16:40:41 +0200150 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/dt-workflow/FunctionalTests"
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700151 }
152 steps {
153 sh """
Andrea Campanella9274f7d2021-11-18 15:42:06 -0800154 ps -ef | grep port-forward
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700155 mkdir -p $ROBOT_LOGS_DIR
Hardik Windlassc97ceae2022-05-13 10:12:55 +0530156 if [ ${params.withFttb} = false ]; then
157 if ( ${powerSwitch} ); then
158 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}"
159 if ( ${powerCycleOlt} ); then
160 ROBOT_MISC_ARGS+=" -v power_cycle_olt:True"
161 fi
162 else
163 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}"
164 fi
165 ROBOT_MISC_ARGS+=" -v NAMESPACE:${volthaNamespace} -v INFRA_NAMESPACE:${infraNamespace}"
166 make -C $WORKSPACE/voltha-system-tests voltha-dt-test || true
Suchitra Vemuri627786a2020-06-18 16:52:05 -0700167 fi
Hardik Windlassc97ceae2022-05-13 10:12:55 +0530168 """
169 }
170 }
171
172 stage('FTTB Functional Tests') {
173 environment {
174 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml"
175 ROBOT_FILE="Voltha_DT_FTTB_Tests.robot"
176 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/dt-workflow/FunctionalTests"
177 }
178 steps {
179 sh """
180 mkdir -p $ROBOT_LOGS_DIR
Hardik Windlass6f7e30b2022-05-16 17:13:41 +0530181 if [ ${params.withFttb} = true ]; then
Hardik Windlassc97ceae2022-05-13 10:12:55 +0530182 export ROBOT_MISC_ARGS="--removekeywords wuks -L TRACE -i sanityDtFttb -e bbsim -e notready -d $ROBOT_LOGS_DIR -v POD_NAME:${configFileName} -v KUBERNETES_CONFIGS_DIR:$WORKSPACE/${configBaseDir}/${configKubernetesDir} -v container_log_dir:$WORKSPACE"
183 ROBOT_MISC_ARGS+=" -v NAMESPACE:${volthaNamespace} -v INFRA_NAMESPACE:${infraNamespace} -v has_dataplane:False"
184 make -C $WORKSPACE/voltha-system-tests voltha-dt-test || true
185 fi
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700186 """
187 }
188 }
Andrea Campanellad924ce22020-04-20 16:40:41 +0200189
Andrea Campanellaf47a1982020-04-21 11:53:31 +0200190 stage('Failure/Recovery Tests') {
191 environment {
192 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml"
193 ROBOT_FILE="Voltha_DT_FailureScenarios.robot"
194 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/dt-workflow/FailureScenarios"
195 }
196 steps {
197 sh """
Andrea Campanella9274f7d2021-11-18 15:42:06 -0800198 ps -ef | grep port-forward
Andrea Campanellaf47a1982020-04-21 11:53:31 +0200199 mkdir -p $ROBOT_LOGS_DIR
Hardik Windlassc97ceae2022-05-13 10:12:55 +0530200 if [ ${params.withFttb} = false ]; then
201 if ( ${powerSwitch} ); then
202 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}"
203 else
204 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}"
205 fi
206 ROBOT_MISC_ARGS+=" -v NAMESPACE:${volthaNamespace} -v INFRA_NAMESPACE:${infraNamespace}"
207 make -C $WORKSPACE/voltha-system-tests voltha-dt-test || true
Andrea Campanellaf47a1982020-04-21 11:53:31 +0200208 fi
Andrea Campanellaf47a1982020-04-21 11:53:31 +0200209 """
210 }
211 }
212
Andy Bavier5ad87c92020-05-11 16:31:35 -0700213 stage('Dataplane Tests') {
214 environment {
Andy Bavier1541da82020-05-15 09:41:38 -0700215 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml"
Andy Bavier5ad87c92020-05-11 16:31:35 -0700216 ROBOT_FILE="Voltha_DT_PODTests.robot"
217 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/dt-workflow/DataplaneTests"
218 }
219 steps {
220 sh """
Andrea Campanella9274f7d2021-11-18 15:42:06 -0800221 ps -ef | grep port-forward
Andy Bavier5ad87c92020-05-11 16:31:35 -0700222 mkdir -p $ROBOT_LOGS_DIR
Hardik Windlassc97ceae2022-05-13 10:12:55 +0530223 if [ ${params.withFttb} = false ]; then
224 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}"
225 ROBOT_MISC_ARGS+=" -v NAMESPACE:${volthaNamespace} -v INFRA_NAMESPACE:${infraNamespace}"
226 make -C $WORKSPACE/voltha-system-tests voltha-dt-test || true
227 fi
Andy Bavier5ad87c92020-05-11 16:31:35 -0700228 """
229 }
230 }
Suchitra Vemuri5e8e7892020-09-14 16:04:12 -0700231 stage('HA Tests') {
232 environment {
233 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml"
234 ROBOT_FILE="Voltha_ONOSHATests.robot"
235 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/ONOSHAScenarios"
236 }
237 steps {
Matteo Scandolo67842812021-07-13 16:52:13 -0700238 sh """
Andrea Campanella9274f7d2021-11-18 15:42:06 -0800239 ps -ef | grep port-forward
Matteo Scandolo67842812021-07-13 16:52:13 -0700240 mkdir -p $ROBOT_LOGS_DIR
Hardik Windlassc97ceae2022-05-13 10:12:55 +0530241 if [ ${params.withFttb} = false ]; then
242 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}"
243 ROBOT_MISC_ARGS+=" -v NAMESPACE:${volthaNamespace} -v INFRA_NAMESPACE:${infraNamespace}"
244 make -C $WORKSPACE/voltha-system-tests voltha-test || true
245 fi
Matteo Scandolo67842812021-07-13 16:52:13 -0700246 """
Suchitra Vemuri5e8e7892020-09-14 16:04:12 -0700247 }
248 }
Andy Bavier5ad87c92020-05-11 16:31:35 -0700249
Suchitra Vemuri0a9c8c62020-12-07 18:24:31 -0800250 stage('Multiple OLT Tests') {
251 environment {
252 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml"
253 ROBOT_FILE="Voltha_DT_MultiOLT_Tests.robot"
254 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/dt-workflow/MultipleOLTScenarios"
255 }
256 steps {
257 sh """
Andrea Campanella9274f7d2021-11-18 15:42:06 -0800258 ps -ef | grep port-forward
Suchitra Vemuri0a9c8c62020-12-07 18:24:31 -0800259 mkdir -p $ROBOT_LOGS_DIR
Hardik Windlassc97ceae2022-05-13 10:12:55 +0530260 if [ ${params.withFttb} = false ]; then
261 if ( ${powerSwitch} ); then
262 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}"
263 else
264 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}"
265 fi
266 ROBOT_MISC_ARGS+=" -v NAMESPACE:${volthaNamespace} -v INFRA_NAMESPACE:${infraNamespace}"
267 make -C $WORKSPACE/voltha-system-tests voltha-dt-test || true
Suchitra Vemuri0a9c8c62020-12-07 18:24:31 -0800268 fi
Suchitra Vemuri0a9c8c62020-12-07 18:24:31 -0800269 """
270 }
271 }
272
273
Andrea Campanellad924ce22020-04-20 16:40:41 +0200274 stage('Error Scenario Tests') {
275 environment {
276 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml"
277 ROBOT_FILE="Voltha_ErrorScenarios.robot"
278 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/dt-workflow/ErrorScenarios"
279 }
280 steps {
281 sh """
282 mkdir -p $ROBOT_LOGS_DIR
Hardik Windlassc97ceae2022-05-13 10:12:55 +0530283 if [ ${params.withFttb} = false ]; then
284 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}"
285 ROBOT_MISC_ARGS+=" -v NAMESPACE:${volthaNamespace} -v INFRA_NAMESPACE:${infraNamespace}"
286 make -C $WORKSPACE/voltha-system-tests voltha-test || true
287 fi
Andrea Campanellad924ce22020-04-20 16:40:41 +0200288 """
289 }
Andrea Campanella71666372020-04-21 10:56:17 +0200290 }
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700291 }
292 post {
293 always {
Matteo Scandolo5e7bd1d2021-07-16 13:29:42 -0700294 getPodsInfo("$WORKSPACE/pods")
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700295 sh returnStdout: false, script: '''
296 set +e
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700297
Matteo Scandolo5e7bd1d2021-07-16 13:29:42 -0700298 # collect logs collected in the Robot Framework StartLogging keyword
299 cd $WORKSPACE
300 gzip *-combined.log || true
301 rm *-combined.log || true
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700302 '''
303 script {
304 deployment_config.olts.each { olt ->
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100305 if (olt.type == null || olt.type == "" || olt.type == "openolt") {
306 sh returnStdout: false, script: """
307 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
308 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/openolt-${olt.sship}.log # Remove escape sequences
309 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
310 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/dev_mgmt_daemon-${olt.sship}.log # Remove escape sequences
311 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
312 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/startup-${olt.sship}.log || true # Remove escape sequences
313 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
314 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/openolt_process_watchdog-${olt.sship}.log || true # Remove escape sequences
315 """
316 }
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700317 }
318 }
319 step([$class: 'RobotPublisher',
320 disableArchiveOutput: false,
321 logFileName: '**/log*.html',
322 otherFiles: '',
323 outputFileName: '**/output*.xml',
324 outputPath: 'RobotLogs',
325 passThreshold: 100,
326 reportFileName: '**/report*.html',
Andrea Campanellaabc09772021-06-16 12:08:57 +0200327 unstableThreshold: 0,
328 onlyCritical: true
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700329 ]);
Matteo Scandolo5e7bd1d2021-07-16 13:29:42 -0700330 archiveArtifacts artifacts: '**/*.log,**/*.gz,**/*.tgz,*.txt,pods/*.txt'
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700331 }
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700332 }
333}