blob: 12065b9aba6e03f0183733390aff3bfedacff160 [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
26pipeline {
27 /* no label, executor is determined by JJB */
28 agent {
29 label "${params.buildNode}"
30 }
31 options {
Suchitra Vemuri6ec07572021-02-22 10:47:05 -080032 timeout(time: 640, unit: 'MINUTES')
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -070033 }
34
35 environment {
36 KUBECONFIG="$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf"
37 VOLTCONFIG="$HOME/.volt/config-minimal"
38 PATH="$WORKSPACE/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
39 }
40
41 stages {
Matteo Scandolo3dce2a12020-09-15 14:21:14 -070042 stage('Clone voltha-system-tests') {
43 steps {
Matteo Scandolo67842812021-07-13 16:52:13 -070044 step([$class: 'WsCleanup'])
Matteo Scandolo3dce2a12020-09-15 14:21:14 -070045 checkout([
46 $class: 'GitSCM',
47 userRemoteConfigs: [[
48 url: "https://gerrit.opencord.org/voltha-system-tests",
Matteo Scandoloa42c6f52020-09-19 01:35:12 +000049 refspec: "${volthaSystemTestsChange}"
Matteo Scandolo3dce2a12020-09-15 14:21:14 -070050 ]],
Suchitra Vemuri1143ae32021-03-26 01:08:37 +000051 branches: [[ name: "${branch}", ]],
Matteo Scandolo3dce2a12020-09-15 14:21:14 -070052 extensions: [
53 [$class: 'WipeWorkspace'],
54 [$class: 'RelativeTargetDirectory', relativeTargetDir: "voltha-system-tests"],
55 [$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: false],
56 ],
57 ])
Suchitra Vemuria38e5412021-02-23 15:28:28 -080058 script {
59 sh(script:"""
60 if [ '${volthaSystemTestsChange}' != '' ] ; then
61 cd $WORKSPACE/voltha-system-tests;
62 git fetch https://gerrit.opencord.org/voltha-system-tests ${volthaSystemTestsChange} && git checkout FETCH_HEAD
63 fi
64 """)
65 }
Matteo Scandolo3dce2a12020-09-15 14:21:14 -070066 }
67 }
Matteo Scandolo92a5cb62020-09-15 16:02:08 -070068 // This checkout allows us to show changes in Jenkins
69 // we only do this on master as we don't branch all the repos for all the releases
70 // (we should compute the difference by tracking the container version, not the code)
71 stage('Download All the VOLTHA repos') {
72 when {
73 expression {
74 return "${branch}" == 'master';
75 }
76 }
77 steps {
78 checkout(changelog: true,
79 poll: false,
80 scm: [$class: 'RepoScm',
81 manifestRepositoryUrl: "${params.manifestUrl}",
82 manifestBranch: "${params.branch}",
83 currentBranch: true,
84 destinationDir: 'voltha',
85 forceSync: true,
86 resetFirst: true,
87 quiet: true,
88 jobs: 4,
89 showAllChanges: true]
90 )
91 }
92 }
Matteo Scandolo3dce2a12020-09-15 14:21:14 -070093 stage ('Initialize') {
94 steps {
Hardik Windlass6f854a12021-07-12 13:20:21 +000095 sh returnStdout: false, script: "git clone -b ${branch} ${cordRepoUrl}/${configBaseDir}"
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -070096 script {
97 deployment_config = readYaml file: "${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml"
98 }
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -070099 sh returnStdout: false, script: """
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700100 mkdir -p $WORKSPACE/bin
101 bash <( curl -sfL https://raw.githubusercontent.com/boz/kail/master/godownloader.sh) -b "$WORKSPACE/bin"
102 cd $WORKSPACE
Hardik Windlass6f854a12021-07-12 13:20:21 +0000103 if [ "${params.branch}" == "voltha-2.8" ]; then
104 VOLTCTL_VERSION=1.6.10
Suchitra Vemuri13421432020-06-05 17:34:33 -0700105 else
Matteo Scandolo3dce2a12020-09-15 14:21:14 -0700106 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 -0700107 fi
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700108
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700109 HOSTOS=\$(uname -s | tr "[:upper:]" "[:lower:"])
110 HOSTARCH=\$(uname -m | tr "[:upper:]" "[:lower:"])
111 if [ \$HOSTARCH == "x86_64" ]; then
112 HOSTARCH="amd64"
113 fi
Matteo Scandolo3dce2a12020-09-15 14:21:14 -0700114 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 -0700115 chmod 755 $WORKSPACE/bin/voltctl
116 voltctl version --clientonly
Andrea Campanella9b234332020-04-24 12:22:18 +0200117
Matteo Scandolo3fbb0652020-07-22 08:50:02 -0700118
Andrea Campanella9b234332020-04-24 12:22:18 +0200119 # Default kind-voltha config doesn't work on ONF demo pod for accessing kvstore.
120 # The issue is that the mgmt node is also one of the k8s nodes and so port forwarding doesn't work.
121 # We should change this. In the meantime here is a workaround.
Suchitra Vemuri13421432020-06-05 17:34:33 -0700122 if [ "${params.branch}" == "master" ]; then
123 set +e
Andrea Campanella9b234332020-04-24 12:22:18 +0200124
Andrea Campanella9b234332020-04-24 12:22:18 +0200125
126 # Remove noise from voltha-core logs
Suchitra Vemuria2a7f2c2020-06-08 14:05:06 -0700127 voltctl log level set WARN read-write-core#github.com/opencord/voltha-go/db/model
128 voltctl log level set WARN read-write-core#github.com/opencord/voltha-lib-go/v3/pkg/kafka
Andrea Campanella9b234332020-04-24 12:22:18 +0200129 # Remove noise from openolt logs
Suchitra Vemuria2a7f2c2020-06-08 14:05:06 -0700130 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/db
131 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/probe
132 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/kafka
Suchitra Vemuri13421432020-06-05 17:34:33 -0700133 fi
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700134 """
135 }
136 }
137
138 stage('Functional Tests') {
139 environment {
Suchitra Vemurie4a5bcc2020-03-16 12:43:03 -0700140 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml"
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700141 ROBOT_FILE="Voltha_DT_PODTests.robot"
Andrea Campanellad924ce22020-04-20 16:40:41 +0200142 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/dt-workflow/FunctionalTests"
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700143 }
144 steps {
Matteo Scandolo7b64b6d2021-07-15 12:07:02 -0700145 startComponentsLogs([logsDir: "$WORKSPACE/logs/FunctionalTests"])
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700146 sh """
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700147 mkdir -p $ROBOT_LOGS_DIR
Suchitra Vemuri627786a2020-06-18 16:52:05 -0700148 if ( ${powerSwitch} ); then
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100149 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 -0700150 else
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100151 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 -0700152 fi
Matteo Scandolo3dce2a12020-09-15 14:21:14 -0700153 make -C $WORKSPACE/voltha-system-tests voltha-dt-test || true
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700154 """
Matteo Scandolo7b64b6d2021-07-15 12:07:02 -0700155 stopComponentsLogs([logsDir: "$WORKSPACE/logs/FunctionalTests", compress: true])
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700156 }
157 }
Andrea Campanellad924ce22020-04-20 16:40:41 +0200158
Andrea Campanellaf47a1982020-04-21 11:53:31 +0200159 stage('Failure/Recovery Tests') {
160 environment {
161 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml"
162 ROBOT_FILE="Voltha_DT_FailureScenarios.robot"
163 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/dt-workflow/FailureScenarios"
164 }
165 steps {
Matteo Scandolo7b64b6d2021-07-15 12:07:02 -0700166 startComponentsLogs([logsDir: "$WORKSPACE/logs/FailureScenarios"])
Andrea Campanellaf47a1982020-04-21 11:53:31 +0200167 sh """
168 mkdir -p $ROBOT_LOGS_DIR
169 if ( ${powerSwitch} ); then
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100170 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 +0200171 else
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100172 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 +0200173 fi
Matteo Scandolo3dce2a12020-09-15 14:21:14 -0700174 make -C $WORKSPACE/voltha-system-tests voltha-dt-test || true
Andrea Campanellaf47a1982020-04-21 11:53:31 +0200175 """
Matteo Scandolo7b64b6d2021-07-15 12:07:02 -0700176 stopComponentsLogs([logsDir: "$WORKSPACE/logs/FailureScenarios", compress: true])
Andrea Campanellaf47a1982020-04-21 11:53:31 +0200177 }
178 }
179
Andy Bavier5ad87c92020-05-11 16:31:35 -0700180 stage('Dataplane Tests') {
181 environment {
Andy Bavier1541da82020-05-15 09:41:38 -0700182 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml"
Andy Bavier5ad87c92020-05-11 16:31:35 -0700183 ROBOT_FILE="Voltha_DT_PODTests.robot"
184 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/dt-workflow/DataplaneTests"
185 }
186 steps {
Matteo Scandolo7b64b6d2021-07-15 12:07:02 -0700187 startComponentsLogs([logsDir: "$WORKSPACE/logs/DataplaneTests"])
Andy Bavier5ad87c92020-05-11 16:31:35 -0700188 sh """
189 mkdir -p $ROBOT_LOGS_DIR
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100190 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}"
Matteo Scandolo3dce2a12020-09-15 14:21:14 -0700191 make -C $WORKSPACE/voltha-system-tests voltha-dt-test || true
Andy Bavier5ad87c92020-05-11 16:31:35 -0700192 """
Matteo Scandolo7b64b6d2021-07-15 12:07:02 -0700193 stopComponentsLogs([logsDir: "$WORKSPACE/logs/DataplaneTests", compress: true])
Andy Bavier5ad87c92020-05-11 16:31:35 -0700194 }
195 }
Suchitra Vemuri5e8e7892020-09-14 16:04:12 -0700196 stage('HA Tests') {
197 environment {
198 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml"
199 ROBOT_FILE="Voltha_ONOSHATests.robot"
200 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/ONOSHAScenarios"
201 }
202 steps {
Matteo Scandolo7b64b6d2021-07-15 12:07:02 -0700203 startComponentsLogs([logsDir: "$WORKSPACE/logs/ONOSHAScenarios"])
Matteo Scandolo67842812021-07-13 16:52:13 -0700204 sh """
205 mkdir -p $ROBOT_LOGS_DIR
206 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}"
207 make -C $WORKSPACE/voltha-system-tests voltha-test || true
208 """
Matteo Scandolo7b64b6d2021-07-15 12:07:02 -0700209 stopComponentsLogs([logsDir: "$WORKSPACE/logs/ONOSHAScenarios", compress: true])
Suchitra Vemuri5e8e7892020-09-14 16:04:12 -0700210 }
211 }
Andy Bavier5ad87c92020-05-11 16:31:35 -0700212
Suchitra Vemuri0a9c8c62020-12-07 18:24:31 -0800213 stage('Multiple OLT Tests') {
214 environment {
215 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml"
216 ROBOT_FILE="Voltha_DT_MultiOLT_Tests.robot"
217 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/dt-workflow/MultipleOLTScenarios"
218 }
219 steps {
Matteo Scandolo7b64b6d2021-07-15 12:07:02 -0700220 startComponentsLogs([logsDir: "$WORKSPACE/logs/ONOSHAScenarios"])
Suchitra Vemuri0a9c8c62020-12-07 18:24:31 -0800221 sh """
222 mkdir -p $ROBOT_LOGS_DIR
223 if ( ${powerSwitch} ); then
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100224 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 -0800225 else
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100226 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 -0800227 fi
228 make -C $WORKSPACE/voltha-system-tests voltha-dt-test || true
229 """
Matteo Scandolo7b64b6d2021-07-15 12:07:02 -0700230 stopComponentsLogs([logsDir: "$WORKSPACE/logs/ONOSHAScenarios", compress: true])
Suchitra Vemuri0a9c8c62020-12-07 18:24:31 -0800231 }
232 }
233
234
Andrea Campanellad924ce22020-04-20 16:40:41 +0200235 stage('Error Scenario Tests') {
236 environment {
237 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml"
238 ROBOT_FILE="Voltha_ErrorScenarios.robot"
239 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/dt-workflow/ErrorScenarios"
240 }
241 steps {
Matteo Scandolo7b64b6d2021-07-15 12:07:02 -0700242 startComponentsLogs([logsDir: "$WORKSPACE/logs/ErrorScenarios"])
Andrea Campanellad924ce22020-04-20 16:40:41 +0200243 sh """
244 mkdir -p $ROBOT_LOGS_DIR
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100245 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}"
Matteo Scandolo3dce2a12020-09-15 14:21:14 -0700246 make -C $WORKSPACE/voltha-system-tests voltha-test || true
Andrea Campanellad924ce22020-04-20 16:40:41 +0200247 """
Matteo Scandolo7b64b6d2021-07-15 12:07:02 -0700248 stopComponentsLogs([logsDir: "$WORKSPACE/logs/ErrorScenarios", compress: true])
Andrea Campanellad924ce22020-04-20 16:40:41 +0200249 }
Andrea Campanella71666372020-04-21 10:56:17 +0200250 }
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700251 }
252 post {
253 always {
254 sh returnStdout: false, script: '''
255 set +e
Matteo Scandolo97b12572020-04-13 12:44:46 -0700256 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\n'}" | sort | uniq
257 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.imageID}{'\\n'}" | sort | uniq
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700258 kubectl get nodes -o wide
259 kubectl get pods -n voltha -o wide
Suchitra Vemuri179643b2020-11-02 10:06:20 -0800260 kubectl get pods -o wide
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700261
Andrea Campanellaa20a9332021-03-09 09:18:42 +0100262 # store information on running charts
263 helm ls > $WORKSPACE/helm-list.txt || true
264
265 # store information on the running pods
Andrea Campanellae0c839f2021-03-16 17:53:40 +0100266 kubectl get pods --all-namespaces -o wide > $WORKSPACE/pods.txt || true
Andrea Campanellaa20a9332021-03-09 09:18:42 +0100267 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\n'}" | sort | uniq | tee $WORKSPACE/pod-images.txt || true
268 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 -0700269 '''
270 script {
271 deployment_config.olts.each { olt ->
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100272 if (olt.type == null || olt.type == "" || olt.type == "openolt") {
273 sh returnStdout: false, script: """
274 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
275 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/openolt-${olt.sship}.log # Remove escape sequences
276 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
277 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/dev_mgmt_daemon-${olt.sship}.log # Remove escape sequences
278 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
279 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/startup-${olt.sship}.log || true # Remove escape sequences
280 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
281 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/openolt_process_watchdog-${olt.sship}.log || true # Remove escape sequences
282 """
283 }
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700284 }
285 }
286 step([$class: 'RobotPublisher',
287 disableArchiveOutput: false,
288 logFileName: '**/log*.html',
289 otherFiles: '',
290 outputFileName: '**/output*.xml',
291 outputPath: 'RobotLogs',
292 passThreshold: 100,
293 reportFileName: '**/report*.html',
Andrea Campanellaabc09772021-06-16 12:08:57 +0200294 unstableThreshold: 0,
295 onlyCritical: true
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700296 ]);
Matteo Scandolo67842812021-07-13 16:52:13 -0700297 archiveArtifacts artifacts: '**/*.log,**/*.tgz,*.txt'
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700298 }
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700299 }
300}