File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -150,6 +150,8 @@ pipeline {
150
150
sh ' docker logs $(docker-compose ps --all -q pdns-db) > debug/sqlite/docker_pdns-db.log 2>&1'
151
151
sh ' docker logs $(docker-compose ps --all -q dnsrouter) > debug/sqlite/docker_dnsrouter.log 2>&1'
152
152
junit ' test/results/junit/*'
153
+ echo ' Sleeping...'
154
+ sh ' sleep 360'
153
155
sh ' docker-compose down --remove-orphans --volumes -t 30 || true'
154
156
}
155
157
}
@@ -294,15 +296,15 @@ pipeline {
294
296
dir(path : ' test' ) {
295
297
archiveArtifacts allowEmptyArchive : true , artifacts : ' results/**/*' , excludes : ' **/*.xml'
296
298
}
297
- archiveArtifacts(artifacts : ' debug/**.* ' , allowEmptyArchive : true )
299
+ archiveArtifacts(artifacts : ' debug/*' , allowEmptyArchive : true )
298
300
juxtapose event : ' failure'
299
301
sh ' figlet "FAILURE"'
300
302
}
301
303
unstable {
302
304
dir(path : ' test' ) {
303
305
archiveArtifacts allowEmptyArchive : true , artifacts : ' results/**/*' , excludes : ' **/*.xml'
304
306
}
305
- archiveArtifacts(artifacts : ' debug/**.* ' , allowEmptyArchive : true )
307
+ archiveArtifacts(artifacts : ' debug/*' , allowEmptyArchive : true )
306
308
juxtapose event : ' unstable'
307
309
sh ' figlet "UNSTABLE"'
308
310
}
You can’t perform that action at this time.
0 commit comments