blob: a2d9c8df847a3bbb7f1537cd558df79be9a03c85 [file] [log] [blame]
Andy Bavier358aa0b2019-11-22 11:55:39 -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
15node {
16 // Need this so that deployment_config has global scope when it's read later
17 deployment_config = null
18}
19
20pipeline {
21 /* no label, executor is determined by JJB */
22 agent {
23 label "${params.buildNode}"
24 }
25 options {
Suchitra Vemuri66437bc2020-09-02 09:00:22 -070026 timeout(time: 380, unit: 'MINUTES')
Andy Bavier358aa0b2019-11-22 11:55:39 -070027 }
28
29 environment {
30 KUBECONFIG="$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf"
31 VOLTCONFIG="$HOME/.volt/config-minimal"
hwchiu942d1dc2020-03-03 12:03:45 -080032 PATH="$WORKSPACE/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
Andy Bavier358aa0b2019-11-22 11:55:39 -070033 }
Andy Bavier358aa0b2019-11-22 11:55:39 -070034 stages {
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -070035 stage('Clone kind-voltha') {
Andy Bavier358aa0b2019-11-22 11:55:39 -070036 steps {
37 step([$class: 'WsCleanup'])
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -070038 checkout([
39 $class: 'GitSCM',
40 userRemoteConfigs: [[
41 url: "https://gerrit.opencord.org/kind-voltha",
Matteo Scandoloa42c6f52020-09-19 01:35:12 +000042 refspec: "${kindVolthaChange}"
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -070043 ]],
44 branches: [[ name: "master", ]],
45 extensions: [
46 [$class: 'WipeWorkspace'],
47 [$class: 'RelativeTargetDirectory', relativeTargetDir: "kind-voltha"],
48 [$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: false],
49 ],
50 ])
51 }
52 }
53 stage('Clone voltha-system-tests') {
54 steps {
55 checkout([
56 $class: 'GitSCM',
57 userRemoteConfigs: [[
58 url: "https://gerrit.opencord.org/voltha-system-tests",
Matteo Scandoloa42c6f52020-09-19 01:35:12 +000059 refspec: "${volthaSystemTestsChange}"
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -070060 ]],
Suchitra Vemuri1143ae32021-03-26 01:08:37 +000061 branches: [[ name: "${branch}", ]],
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -070062 extensions: [
63 [$class: 'WipeWorkspace'],
64 [$class: 'RelativeTargetDirectory', relativeTargetDir: "voltha-system-tests"],
65 [$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: false],
66 ],
67 ])
68 }
69 }
70 stage('Clone cord-tester') {
71 steps {
72 checkout([
73 $class: 'GitSCM',
74 userRemoteConfigs: [[
75 url: "https://gerrit.opencord.org/cord-tester",
Matteo Scandoloa42c6f52020-09-19 01:35:12 +000076 refspec: "${cordTesterChange}"
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -070077 ]],
78 branches: [[ name: "master", ]],
79 extensions: [
80 [$class: 'WipeWorkspace'],
81 [$class: 'RelativeTargetDirectory', relativeTargetDir: "cord-tester"],
82 [$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: false],
83 ],
84 ])
85 }
86 }
87 stage('Download All the VOLTHA repos') {
88 when {
89 expression {
90 return "${branch}" == 'master';
91 }
92 }
93 steps {
94 checkout(changelog: true,
95 poll: false,
96 scm: [$class: 'RepoScm',
97 manifestRepositoryUrl: "${params.manifestUrl}",
98 manifestBranch: "${params.branch}",
99 currentBranch: true,
100 destinationDir: 'voltha',
101 forceSync: true,
102 resetFirst: true,
103 quiet: true,
104 jobs: 4,
105 showAllChanges: true]
106 )
107 }
108 }
109 stage ('Initialize') {
110 steps {
Suchitra Vemuri1560cb82020-03-27 15:34:57 -0700111 sh returnStdout: false, script: "git clone -b master ${cordRepoUrl}/${configBaseDir}"
Andy Bavier358aa0b2019-11-22 11:55:39 -0700112 script {
113 deployment_config = readYaml file: "${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
114 }
hwchiu1f0b0fe2019-12-06 11:45:23 -0800115 sh returnStdout: false, script: """
Andy Bavier4af02722020-01-15 10:24:24 -0700116 mkdir -p $WORKSPACE/bin
117 bash <( curl -sfL https://raw.githubusercontent.com/boz/kail/master/godownloader.sh) -b "$WORKSPACE/bin"
Andy Bavier07df3212020-02-12 20:42:44 -0700118 cd $WORKSPACE
Suchitra Vemuri13421432020-06-05 17:34:33 -0700119 if [ "${params.branch}" != "master" ]; then
120 cd $WORKSPACE/kind-voltha
121 source releases/${params.branch}
Suchitra Vemuri13421432020-06-05 17:34:33 -0700122 else
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700123 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 -0700124 fi
hwchiu942d1dc2020-03-03 12:03:45 -0800125
hwchiu942d1dc2020-03-03 12:03:45 -0800126 HOSTOS=\$(uname -s | tr "[:upper:]" "[:lower:"])
127 HOSTARCH=\$(uname -m | tr "[:upper:]" "[:lower:"])
128 if [ \$HOSTARCH == "x86_64" ]; then
129 HOSTARCH="amd64"
130 fi
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700131 curl -o $WORKSPACE/bin/voltctl -sSL https://github.com/opencord/voltctl/releases/download/v\${VOLTCTL_VERSION}/voltctl-\${VOLTCTL_VERSION}-\${HOSTOS}-\${HOSTARCH}
hwchiu942d1dc2020-03-03 12:03:45 -0800132 chmod 755 $WORKSPACE/bin/voltctl
133 voltctl version --clientonly
Andy Bavier1f530f52020-04-14 15:57:33 -0700134
Suchitra Vemuri13421432020-06-05 17:34:33 -0700135 if [ "${params.branch}" == "master" ]; then
Andy Bavierd921f372020-04-20 17:03:31 -0700136 # Default kind-voltha config doesn't work on ONF demo pod for accessing kvstore.
137 # The issue is that the mgmt node is also one of the k8s nodes and so port forwarding doesn't work.
138 # We should change this. In the meantime here is a workaround.
Suchitra Vemuri13421432020-06-05 17:34:33 -0700139 set +e
Andy Bavierce83b172020-04-22 10:49:23 -0700140
Andy Bavier1f530f52020-04-14 15:57:33 -0700141 # Remove noise from voltha-core logs
Suchitra Vemuri13421432020-06-05 17:34:33 -0700142 voltctl log level set WARN read-write-core#github.com/opencord/voltha-go/db/model
143 voltctl log level set WARN read-write-core#github.com/opencord/voltha-lib-go/v3/pkg/kafka
Andy Bavier1f530f52020-04-14 15:57:33 -0700144 # Remove noise from openolt logs
Suchitra Vemuri13421432020-06-05 17:34:33 -0700145 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/db
146 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/probe
147 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/kafka
148 fi
Andy Bavier358aa0b2019-11-22 11:55:39 -0700149 """
150 }
151 }
hwchiu942d1dc2020-03-03 12:03:45 -0800152
Suchitra Vemuriaf134ff2020-02-19 16:55:38 -0800153 stage('Functional Tests') {
Andy Bavier358aa0b2019-11-22 11:55:39 -0700154 environment {
155 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
Andy Bavier358aa0b2019-11-22 11:55:39 -0700156 ROBOT_FILE="Voltha_PODTests.robot"
Andy Bavierfed57db2020-01-22 16:28:50 -0700157 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/FunctionalTests"
Andy Bavier358aa0b2019-11-22 11:55:39 -0700158 }
159 steps {
160 sh """
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700161 cd $WORKSPACE/kind-voltha/scripts
Andy Bavier3c1ccca2020-02-12 16:50:04 -0700162 ./log-collector.sh > /dev/null &
Andy Bavier7afb11c2020-02-13 11:25:20 -0700163 ./log-combine.sh > /dev/null &
Andy Bavier3c1ccca2020-02-12 16:50:04 -0700164
Andy Bavierfed57db2020-01-22 16:28:50 -0700165 mkdir -p $ROBOT_LOGS_DIR
Suchitra Vemuri627786a2020-06-18 16:52:05 -0700166 if ( ${powerSwitch} ); then
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100167 export ROBOT_MISC_ARGS="--removekeywords wuks -i PowerSwitch -i sanity -i functional -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 -0700168 else
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100169 export ROBOT_MISC_ARGS="--removekeywords wuks -e PowerSwitch -i sanity -i functional -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 Scandolo518c9e12020-07-21 11:32:23 -0700170 fi
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700171 make -C $WORKSPACE/voltha-system-tests voltha-test || true
Andy Bavierfed57db2020-01-22 16:28:50 -0700172 """
173 }
174 }
175
Suchitra Vemuri5dae5392020-01-30 20:10:18 -0800176 stage('Failure/Recovery Tests') {
Andy Bavierfed57db2020-01-22 16:28:50 -0700177 environment {
178 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
Suchitra Vemuri5dae5392020-01-30 20:10:18 -0800179 ROBOT_FILE="Voltha_FailureScenarios.robot"
180 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/FailureScenarios"
Andy Bavierfed57db2020-01-22 16:28:50 -0700181 }
182 steps {
183 sh """
184 mkdir -p $ROBOT_LOGS_DIR
Suchitra Vemuri1560cb82020-03-27 15:34:57 -0700185 if ( ${powerSwitch} ); then
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100186 export ROBOT_MISC_ARGS="--removekeywords wuks -L TRACE -i functional -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 Vemuriaf134ff2020-02-19 16:55:38 -0800187 else
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100188 export ROBOT_MISC_ARGS="--removekeywords wuks -L TRACE -i functional -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 Vemuriaf134ff2020-02-19 16:55:38 -0800189 fi
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700190 make -C $WORKSPACE/voltha-system-tests voltha-test || true
Andy Bavier358aa0b2019-11-22 11:55:39 -0700191 """
192 }
193 }
Andy Bavier358aa0b2019-11-22 11:55:39 -0700194
Andy Bavier5ad87c92020-05-11 16:31:35 -0700195 stage('Dataplane Tests') {
196 environment {
197 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
198 ROBOT_FILE="Voltha_PODTests.robot"
199 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/DataplaneTests"
200 }
201 steps {
202 sh """
203 mkdir -p $ROBOT_LOGS_DIR
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100204 export ROBOT_MISC_ARGS="--removekeywords wuks -i dataplane -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 Vemurie3bb90d2020-09-15 17:15:50 -0700205 make -C $WORKSPACE/voltha-system-tests voltha-test || true
Andy Bavier5ad87c92020-05-11 16:31:35 -0700206 """
207 }
208 }
Suchitra Vemuri5e8e7892020-09-14 16:04:12 -0700209 stage('HA Tests') {
210 environment {
211 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
212 ROBOT_FILE="Voltha_ONOSHATests.robot"
213 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/ONOSHAScenarios"
214 }
215 steps {
216 sh """
217 mkdir -p $ROBOT_LOGS_DIR
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100218 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}"
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700219 make -C $WORKSPACE/voltha-system-tests voltha-test || true
Suchitra Vemuri5e8e7892020-09-14 16:04:12 -0700220 """
221 }
222 }
Andy Bavier5ad87c92020-05-11 16:31:35 -0700223
Suchitra Vemuri5dae5392020-01-30 20:10:18 -0800224 stage('Error Scenario Tests') {
Suchitra Vemuri489c2ae2020-01-23 16:27:39 -0800225 environment {
226 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
Suchitra Vemuri5dae5392020-01-30 20:10:18 -0800227 ROBOT_FILE="Voltha_ErrorScenarios.robot"
228 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/ErrorScenarios"
Suchitra Vemuri489c2ae2020-01-23 16:27:39 -0800229 }
230 steps {
231 sh """
232 mkdir -p $ROBOT_LOGS_DIR
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100233 export ROBOT_MISC_ARGS="--removekeywords wuks -L TRACE -i functional -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 Vemurie3bb90d2020-09-15 17:15:50 -0700234 make -C $WORKSPACE/voltha-system-tests voltha-test || true
Suchitra Vemuri489c2ae2020-01-23 16:27:39 -0800235 """
236 }
237 }
238 }
Andy Bavier358aa0b2019-11-22 11:55:39 -0700239 post {
240 always {
Andy Bavier4af02722020-01-15 10:24:24 -0700241 sh returnStdout: false, script: '''
Andy Bavier358aa0b2019-11-22 11:55:39 -0700242 set +e
Matteo Scandolo97b12572020-04-13 12:44:46 -0700243 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\n'}" | sort | uniq
244 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.imageID}{'\\n'}" | sort | uniq
Andy Bavier358aa0b2019-11-22 11:55:39 -0700245 kubectl get nodes -o wide
246 kubectl get pods -n voltha -o wide
Suchitra Vemuri179643b2020-11-02 10:06:20 -0800247 kubectl get pods -o wide
Andy Bavier4af02722020-01-15 10:24:24 -0700248
Andy Bavier7afb11c2020-02-13 11:25:20 -0700249 sleep 60 # Wait for log-collector and log-combine to complete
250
Andy Bavierd71f4372020-03-04 10:25:19 -0700251 # Clean up "announcer" pod used by the tests if present
252 kubectl delete pod announcer || true
253
Andy Bavierb30c0a02020-03-03 17:21:23 -0700254 ## Pull out errors from log files
255 extract_errors_go() {
256 echo
257 echo "Error summary for $1:"
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700258 grep '"level":"error"' $WORKSPACE/kind-voltha/scripts/logger/combined/$1*
Andy Bavierb30c0a02020-03-03 17:21:23 -0700259 echo
260 }
261
262 extract_errors_python() {
263 echo
264 echo "Error summary for $1:"
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700265 grep 'ERROR' $WORKSPACE/kind-voltha/scripts/logger/combined/$1*
Andy Bavierb30c0a02020-03-03 17:21:23 -0700266 echo
267 }
268
269 extract_errors_go voltha-rw-core > $WORKSPACE/error-report.log
270 extract_errors_go adapter-open-olt >> $WORKSPACE/error-report.log
271 extract_errors_python adapter-open-onu >> $WORKSPACE/error-report.log
272 extract_errors_python voltha-ofagent >> $WORKSPACE/error-report.log
273 extract_errors_python onos >> $WORKSPACE/error-report.log
274
Andrea Campanella9a95cb72020-09-03 11:28:35 +0200275 gzip error-report.log || true
Andrea Campanellac9c80682020-09-30 12:02:01 +0200276 rm error-report.log || true
Andrea Campanella9a95cb72020-09-03 11:28:35 +0200277
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700278 cd $WORKSPACE/kind-voltha/scripts/logger/combined/
Andy Bavier7afb11c2020-02-13 11:25:20 -0700279 tar czf $WORKSPACE/container-logs.tgz *
Andrea Campanellac9c80682020-09-30 12:02:01 +0200280 rm * || true
Andy Bavier4af02722020-01-15 10:24:24 -0700281
Andy Bavier3c1ccca2020-02-12 16:50:04 -0700282 cd $WORKSPACE
Andy Bavierb86ca422020-02-13 05:19:43 -0700283 gzip *-combined.log || true
Andrea Campanellac9c80682020-09-30 12:02:01 +0200284 rm *-combined.log || true
Matteo Scandolo518c9e12020-07-21 11:32:23 -0700285
Andrea Campanellaa20a9332021-03-09 09:18:42 +0100286 # store information on running charts
287 helm ls > $WORKSPACE/helm-list.txt || true
288
289 # store information on the running pods
Andrea Campanellae0c839f2021-03-16 17:53:40 +0100290 kubectl get pods --all-namespaces -o wide > $WORKSPACE/pods.txt || true
Andrea Campanellaa20a9332021-03-09 09:18:42 +0100291 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\n'}" | sort | uniq | tee $WORKSPACE/pod-images.txt || true
292 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.imageID}{'\\n'}" | sort | uniq | tee $WORKSPACE/pod-imagesId.txt || true
293
294
Matteo Scandolo518c9e12020-07-21 11:32:23 -0700295 # collect ETCD cluster logs
296 mkdir -p $WORKSPACE/etcd
Girish Gowdra3eb96f62020-10-15 12:48:34 -0700297 printf '%s\n' $(kubectl get pods -l app=etcd -o=jsonpath="{.items[*]['metadata.name']}") | xargs -I% bash -c "kubectl logs % > $WORKSPACE/etcd/%.log"
Andy Bavier4af02722020-01-15 10:24:24 -0700298 '''
Andy Bavier358aa0b2019-11-22 11:55:39 -0700299 script {
300 deployment_config.olts.each { olt ->
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100301 if (olt.type == null || olt.type == "" || olt.type == "openolt") {
302 sh returnStdout: false, script: """
303 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
304 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/openolt-${olt.sship}.log # Remove escape sequences
305 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
306 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/dev_mgmt_daemon-${olt.sship}.log # Remove escape sequences
307 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
308 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/startup-${olt.sship}.log || true # Remove escape sequences
309 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
310 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/openolt_process_watchdog-${olt.sship}.log || true # Remove escape sequences
311 """
312 }
Andy Bavier358aa0b2019-11-22 11:55:39 -0700313 }
314 }
315 step([$class: 'RobotPublisher',
316 disableArchiveOutput: false,
Andy Bavierfed57db2020-01-22 16:28:50 -0700317 logFileName: '**/log*.html',
Andy Bavier358aa0b2019-11-22 11:55:39 -0700318 otherFiles: '',
Andy Bavierfed57db2020-01-22 16:28:50 -0700319 outputFileName: '**/output*.xml',
320 outputPath: 'RobotLogs',
Andy Bavier358aa0b2019-11-22 11:55:39 -0700321 passThreshold: 100,
Andy Bavierfed57db2020-01-22 16:28:50 -0700322 reportFileName: '**/report*.html',
Andy Bavier358aa0b2019-11-22 11:55:39 -0700323 unstableThreshold: 0
324 ]);
Matteo Scandolo518c9e12020-07-21 11:32:23 -0700325 archiveArtifacts artifacts: '*.log,*.gz,*.tgz,etcd/*.log'
Andy Bavier358aa0b2019-11-22 11:55:39 -0700326 }
327 unstable {
328 step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "${notificationEmail}", sendToIndividuals: false])
329 }
330 }
331}