Skip to content

Commit b2592d9

Browse files
committed
Testing
1 parent adf0030 commit b2592d9

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Jenkinsfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,8 @@ pipeline {
150150
sh 'docker logs $(docker-compose ps --all -q pdns-db) > debug/sqlite/docker_pdns-db.log 2>&1'
151151
sh 'docker logs $(docker-compose ps --all -q dnsrouter) > debug/sqlite/docker_dnsrouter.log 2>&1'
152152
junit 'test/results/junit/*'
153+
echo 'Sleeping...'
154+
sh 'sleep 360'
153155
sh 'docker-compose down --remove-orphans --volumes -t 30 || true'
154156
}
155157
}
@@ -294,15 +296,15 @@ pipeline {
294296
dir(path: 'test') {
295297
archiveArtifacts allowEmptyArchive: true, artifacts: 'results/**/*', excludes: '**/*.xml'
296298
}
297-
archiveArtifacts(artifacts: 'debug/**.*', allowEmptyArchive: true)
299+
archiveArtifacts(artifacts: 'debug/*', allowEmptyArchive: true)
298300
juxtapose event: 'failure'
299301
sh 'figlet "FAILURE"'
300302
}
301303
unstable {
302304
dir(path: 'test') {
303305
archiveArtifacts allowEmptyArchive: true, artifacts: 'results/**/*', excludes: '**/*.xml'
304306
}
305-
archiveArtifacts(artifacts: 'debug/**.*', allowEmptyArchive: true)
307+
archiveArtifacts(artifacts: 'debug/*', allowEmptyArchive: true)
306308
juxtapose event: 'unstable'
307309
sh 'figlet "UNSTABLE"'
308310
}

0 commit comments

Comments
 (0)