This commit is contained in:
Jamie Curnow 2023-05-31 21:34:05 +10:00
parent adf0030b1c
commit b2592d9351
No known key found for this signature in database
GPG Key ID: FFBB624C43388E9E

6
Jenkinsfile vendored
View File

@ -150,6 +150,8 @@ pipeline {
sh 'docker logs $(docker-compose ps --all -q pdns-db) > debug/sqlite/docker_pdns-db.log 2>&1'
sh 'docker logs $(docker-compose ps --all -q dnsrouter) > debug/sqlite/docker_dnsrouter.log 2>&1'
junit 'test/results/junit/*'
echo 'Sleeping...'
sh 'sleep 360'
sh 'docker-compose down --remove-orphans --volumes -t 30 || true'
}
}
@ -294,7 +296,7 @@ pipeline {
dir(path: 'test') {
archiveArtifacts allowEmptyArchive: true, artifacts: 'results/**/*', excludes: '**/*.xml'
}
archiveArtifacts(artifacts: 'debug/**.*', allowEmptyArchive: true)
archiveArtifacts(artifacts: 'debug/*', allowEmptyArchive: true)
juxtapose event: 'failure'
sh 'figlet "FAILURE"'
}
@ -302,7 +304,7 @@ pipeline {
dir(path: 'test') {
archiveArtifacts allowEmptyArchive: true, artifacts: 'results/**/*', excludes: '**/*.xml'
}
archiveArtifacts(artifacts: 'debug/**.*', allowEmptyArchive: true)
archiveArtifacts(artifacts: 'debug/*', allowEmptyArchive: true)
juxtapose event: 'unstable'
sh 'figlet "UNSTABLE"'
}