blob: 2d11280bb66c728ef2776b721da350598bf1a5b1 [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",
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -070042 ]],
43 branches: [[ name: "master", ]],
44 extensions: [
45 [$class: 'WipeWorkspace'],
46 [$class: 'RelativeTargetDirectory', relativeTargetDir: "kind-voltha"],
47 [$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: false],
48 ],
49 ])
Matteo Scandolo01d596c2020-09-18 16:37:55 -070050 sh """
51 cd $WORKSPACE/kind-voltha
52 git fetch https://gerrit.opencord.org/kind-voltha ${gerritRefspec} && git checkout FETCH_HEAD
53 """
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -070054 }
55 }
56 stage('Clone voltha-system-tests') {
57 steps {
58 checkout([
59 $class: 'GitSCM',
60 userRemoteConfigs: [[
61 url: "https://gerrit.opencord.org/voltha-system-tests",
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -070062 ]],
63 branches: [[ name: "${branch}", ]],
64 extensions: [
65 [$class: 'WipeWorkspace'],
66 [$class: 'RelativeTargetDirectory', relativeTargetDir: "voltha-system-tests"],
67 [$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: false],
68 ],
69 ])
Matteo Scandolo01d596c2020-09-18 16:37:55 -070070 sh """
71 cd $WORKSPACE/voltha-system-tests
72 git fetch https://gerrit.opencord.org/voltha-system-tests ${volthaSystemTestsChange} && git checkout FETCH_HEAD
73 """
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -070074 }
75 }
76 stage('Clone cord-tester') {
77 steps {
78 checkout([
79 $class: 'GitSCM',
80 userRemoteConfigs: [[
81 url: "https://gerrit.opencord.org/cord-tester",
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -070082 ]],
83 branches: [[ name: "master", ]],
84 extensions: [
85 [$class: 'WipeWorkspace'],
86 [$class: 'RelativeTargetDirectory', relativeTargetDir: "cord-tester"],
87 [$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: false],
88 ],
89 ])
Matteo Scandolo01d596c2020-09-18 16:37:55 -070090 sh """
91 cd $WORKSPACE/cord-tester
92 git fetch https://gerrit.opencord.org/voltha-system-tests ${cordTesterChange} && git checkout FETCH_HEAD
93 """
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -070094 }
95 }
96 stage('Download All the VOLTHA repos') {
97 when {
98 expression {
99 return "${branch}" == 'master';
100 }
101 }
102 steps {
103 checkout(changelog: true,
104 poll: false,
105 scm: [$class: 'RepoScm',
106 manifestRepositoryUrl: "${params.manifestUrl}",
107 manifestBranch: "${params.branch}",
108 currentBranch: true,
109 destinationDir: 'voltha',
110 forceSync: true,
111 resetFirst: true,
112 quiet: true,
113 jobs: 4,
114 showAllChanges: true]
115 )
116 }
117 }
118 stage ('Initialize') {
119 steps {
Suchitra Vemuri1560cb82020-03-27 15:34:57 -0700120 sh returnStdout: false, script: "git clone -b master ${cordRepoUrl}/${configBaseDir}"
Andy Bavier358aa0b2019-11-22 11:55:39 -0700121 script {
122 deployment_config = readYaml file: "${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
123 }
hwchiu1f0b0fe2019-12-06 11:45:23 -0800124 sh returnStdout: false, script: """
Andy Bavier4af02722020-01-15 10:24:24 -0700125 mkdir -p $WORKSPACE/bin
126 bash <( curl -sfL https://raw.githubusercontent.com/boz/kail/master/godownloader.sh) -b "$WORKSPACE/bin"
Andy Bavier07df3212020-02-12 20:42:44 -0700127 cd $WORKSPACE
Suchitra Vemuri13421432020-06-05 17:34:33 -0700128 if [ "${params.branch}" != "master" ]; then
129 cd $WORKSPACE/kind-voltha
130 source releases/${params.branch}
Suchitra Vemuri13421432020-06-05 17:34:33 -0700131 else
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700132 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 -0700133 fi
hwchiu942d1dc2020-03-03 12:03:45 -0800134
hwchiu942d1dc2020-03-03 12:03:45 -0800135 HOSTOS=\$(uname -s | tr "[:upper:]" "[:lower:"])
136 HOSTARCH=\$(uname -m | tr "[:upper:]" "[:lower:"])
137 if [ \$HOSTARCH == "x86_64" ]; then
138 HOSTARCH="amd64"
139 fi
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700140 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 -0800141 chmod 755 $WORKSPACE/bin/voltctl
142 voltctl version --clientonly
Andy Bavier1f530f52020-04-14 15:57:33 -0700143
Suchitra Vemuri13421432020-06-05 17:34:33 -0700144 if [ "${params.branch}" == "master" ]; then
Andy Bavierd921f372020-04-20 17:03:31 -0700145 # Default kind-voltha config doesn't work on ONF demo pod for accessing kvstore.
146 # The issue is that the mgmt node is also one of the k8s nodes and so port forwarding doesn't work.
147 # We should change this. In the meantime here is a workaround.
Suchitra Vemuri13421432020-06-05 17:34:33 -0700148 set +e
Andy Bavierce83b172020-04-22 10:49:23 -0700149
Andy Bavier1f530f52020-04-14 15:57:33 -0700150 # Remove noise from voltha-core logs
Suchitra Vemuri13421432020-06-05 17:34:33 -0700151 voltctl log level set WARN read-write-core#github.com/opencord/voltha-go/db/model
152 voltctl log level set WARN read-write-core#github.com/opencord/voltha-lib-go/v3/pkg/kafka
Andy Bavier1f530f52020-04-14 15:57:33 -0700153 # Remove noise from openolt logs
Suchitra Vemuri13421432020-06-05 17:34:33 -0700154 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/db
155 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/probe
156 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/kafka
157 fi
Andy Bavier358aa0b2019-11-22 11:55:39 -0700158 """
159 }
160 }
hwchiu942d1dc2020-03-03 12:03:45 -0800161
Suchitra Vemuriaf134ff2020-02-19 16:55:38 -0800162 stage('Functional Tests') {
Andy Bavier358aa0b2019-11-22 11:55:39 -0700163 environment {
164 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
Andy Bavier358aa0b2019-11-22 11:55:39 -0700165 ROBOT_FILE="Voltha_PODTests.robot"
Andy Bavierfed57db2020-01-22 16:28:50 -0700166 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/FunctionalTests"
Andy Bavier358aa0b2019-11-22 11:55:39 -0700167 }
168 steps {
169 sh """
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700170 cd $WORKSPACE/kind-voltha/scripts
Andy Bavier3c1ccca2020-02-12 16:50:04 -0700171 ./log-collector.sh > /dev/null &
Andy Bavier7afb11c2020-02-13 11:25:20 -0700172 ./log-combine.sh > /dev/null &
Andy Bavier3c1ccca2020-02-12 16:50:04 -0700173
Andy Bavierfed57db2020-01-22 16:28:50 -0700174 mkdir -p $ROBOT_LOGS_DIR
Suchitra Vemuri627786a2020-06-18 16:52:05 -0700175 if ( ${powerSwitch} ); then
176 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"
177 else
178 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"
Matteo Scandolo518c9e12020-07-21 11:32:23 -0700179 fi
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700180 make -C $WORKSPACE/voltha-system-tests voltha-test || true
Andy Bavierfed57db2020-01-22 16:28:50 -0700181 """
182 }
183 }
184
Suchitra Vemuri5dae5392020-01-30 20:10:18 -0800185 stage('Failure/Recovery Tests') {
Andy Bavierfed57db2020-01-22 16:28:50 -0700186 environment {
187 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
Suchitra Vemuri5dae5392020-01-30 20:10:18 -0800188 ROBOT_FILE="Voltha_FailureScenarios.robot"
189 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/FailureScenarios"
Andy Bavierfed57db2020-01-22 16:28:50 -0700190 }
191 steps {
192 sh """
193 mkdir -p $ROBOT_LOGS_DIR
Suchitra Vemuri1560cb82020-03-27 15:34:57 -0700194 if ( ${powerSwitch} ); then
Suchitra Vemuri1d7b3422020-02-20 16:42:10 -0800195 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"
Suchitra Vemuriaf134ff2020-02-19 16:55:38 -0800196 else
Suchitra Vemuri1d7b3422020-02-20 16:42:10 -0800197 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"
Suchitra Vemuriaf134ff2020-02-19 16:55:38 -0800198 fi
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700199 make -C $WORKSPACE/voltha-system-tests voltha-test || true
Andy Bavier358aa0b2019-11-22 11:55:39 -0700200 """
201 }
202 }
Andy Bavier358aa0b2019-11-22 11:55:39 -0700203
Andy Bavier5ad87c92020-05-11 16:31:35 -0700204 stage('Dataplane Tests') {
205 environment {
206 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
207 ROBOT_FILE="Voltha_PODTests.robot"
208 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/DataplaneTests"
209 }
210 steps {
211 sh """
212 mkdir -p $ROBOT_LOGS_DIR
Andy Bavier2dac06b2020-05-27 16:58:32 -0700213 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"
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700214 make -C $WORKSPACE/voltha-system-tests voltha-test || true
Andy Bavier5ad87c92020-05-11 16:31:35 -0700215 """
216 }
217 }
Suchitra Vemuri5e8e7892020-09-14 16:04:12 -0700218 stage('HA Tests') {
219 environment {
220 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
221 ROBOT_FILE="Voltha_ONOSHATests.robot"
222 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/ONOSHAScenarios"
223 }
224 steps {
225 sh """
226 mkdir -p $ROBOT_LOGS_DIR
227 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"
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700228 make -C $WORKSPACE/voltha-system-tests voltha-test || true
Suchitra Vemuri5e8e7892020-09-14 16:04:12 -0700229 """
230 }
231 }
Andy Bavier5ad87c92020-05-11 16:31:35 -0700232
Suchitra Vemuri5dae5392020-01-30 20:10:18 -0800233 stage('Error Scenario Tests') {
Suchitra Vemuri489c2ae2020-01-23 16:27:39 -0800234 environment {
235 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
Suchitra Vemuri5dae5392020-01-30 20:10:18 -0800236 ROBOT_FILE="Voltha_ErrorScenarios.robot"
237 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/ErrorScenarios"
Suchitra Vemuri489c2ae2020-01-23 16:27:39 -0800238 }
239 steps {
240 sh """
241 mkdir -p $ROBOT_LOGS_DIR
Suchitra Vemuri1560cb82020-03-27 15:34:57 -0700242 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"
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700243 make -C $WORKSPACE/voltha-system-tests voltha-test || true
Suchitra Vemuri489c2ae2020-01-23 16:27:39 -0800244 """
245 }
246 }
247 }
Andy Bavier358aa0b2019-11-22 11:55:39 -0700248 post {
249 always {
Andy Bavier4af02722020-01-15 10:24:24 -0700250 sh returnStdout: false, script: '''
Andy Bavier358aa0b2019-11-22 11:55:39 -0700251 set +e
Matteo Scandolo97b12572020-04-13 12:44:46 -0700252 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\n'}" | sort | uniq
253 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.imageID}{'\\n'}" | sort | uniq
Andy Bavier358aa0b2019-11-22 11:55:39 -0700254 kubectl get nodes -o wide
255 kubectl get pods -n voltha -o wide
Andy Bavier4af02722020-01-15 10:24:24 -0700256
Andy Bavier7afb11c2020-02-13 11:25:20 -0700257 sleep 60 # Wait for log-collector and log-combine to complete
258
Andy Bavierd71f4372020-03-04 10:25:19 -0700259 # Clean up "announcer" pod used by the tests if present
260 kubectl delete pod announcer || true
261
Andy Bavierb30c0a02020-03-03 17:21:23 -0700262 ## Pull out errors from log files
263 extract_errors_go() {
264 echo
265 echo "Error summary for $1:"
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700266 grep '"level":"error"' $WORKSPACE/kind-voltha/scripts/logger/combined/$1*
Andy Bavierb30c0a02020-03-03 17:21:23 -0700267 echo
268 }
269
270 extract_errors_python() {
271 echo
272 echo "Error summary for $1:"
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700273 grep 'ERROR' $WORKSPACE/kind-voltha/scripts/logger/combined/$1*
Andy Bavierb30c0a02020-03-03 17:21:23 -0700274 echo
275 }
276
277 extract_errors_go voltha-rw-core > $WORKSPACE/error-report.log
278 extract_errors_go adapter-open-olt >> $WORKSPACE/error-report.log
279 extract_errors_python adapter-open-onu >> $WORKSPACE/error-report.log
280 extract_errors_python voltha-ofagent >> $WORKSPACE/error-report.log
281 extract_errors_python onos >> $WORKSPACE/error-report.log
282
Andrea Campanella9a95cb72020-09-03 11:28:35 +0200283 gzip error-report.log || true
284
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700285 cd $WORKSPACE/kind-voltha/scripts/logger/combined/
Andy Bavier7afb11c2020-02-13 11:25:20 -0700286 tar czf $WORKSPACE/container-logs.tgz *
Andy Bavier4af02722020-01-15 10:24:24 -0700287
Andy Bavier3c1ccca2020-02-12 16:50:04 -0700288 cd $WORKSPACE
Andy Bavierb86ca422020-02-13 05:19:43 -0700289 gzip *-combined.log || true
Matteo Scandolo518c9e12020-07-21 11:32:23 -0700290
291 # collect ETCD cluster logs
292 mkdir -p $WORKSPACE/etcd
293 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 -0700294 '''
Andy Bavier358aa0b2019-11-22 11:55:39 -0700295 script {
296 deployment_config.olts.each { olt ->
hwchiu1f0b0fe2019-12-06 11:45:23 -0800297 sh returnStdout: false, script: """
Matteo Scandolo518c9e12020-07-21 11:32:23 -0700298 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
Suchitra Vemuria0695662020-07-17 09:41:49 -0700299 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/openolt-${olt.sship}.log # Remove escape sequences
Matteo Scandolo518c9e12020-07-21 11:32:23 -0700300 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
Suchitra Vemuria0695662020-07-17 09:41:49 -0700301 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/dev_mgmt_daemon-${olt.sship}.log # Remove escape sequences
Matteo Scandolo518c9e12020-07-21 11:32:23 -0700302 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
Matteo Scandolo43fe7802020-07-22 09:17:38 -0700303 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/startup-${olt.sship}.log || true # Remove escape sequences
Girish Gowdra201b7e42020-07-28 15:58:07 -0700304 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
305 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/openolt_process_watchdog-${olt.sship}.log || true # Remove escape sequences
Andy Bavier358aa0b2019-11-22 11:55:39 -0700306 """
307 }
308 }
309 step([$class: 'RobotPublisher',
310 disableArchiveOutput: false,
Andy Bavierfed57db2020-01-22 16:28:50 -0700311 logFileName: '**/log*.html',
Andy Bavier358aa0b2019-11-22 11:55:39 -0700312 otherFiles: '',
Andy Bavierfed57db2020-01-22 16:28:50 -0700313 outputFileName: '**/output*.xml',
314 outputPath: 'RobotLogs',
Andy Bavier358aa0b2019-11-22 11:55:39 -0700315 passThreshold: 100,
Andy Bavierfed57db2020-01-22 16:28:50 -0700316 reportFileName: '**/report*.html',
Andy Bavier358aa0b2019-11-22 11:55:39 -0700317 unstableThreshold: 0
318 ]);
Matteo Scandolo518c9e12020-07-21 11:32:23 -0700319 archiveArtifacts artifacts: '*.log,*.gz,*.tgz,etcd/*.log'
Andy Bavier358aa0b2019-11-22 11:55:39 -0700320 }
321 unstable {
322 step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "${notificationEmail}", sendToIndividuals: false])
323 }
324 }
325}