Archive test results, etc

This commit is contained in:
R. Tyler Croy 2015-12-26 21:51:21 -08:00
parent dc1cfab361
commit 0bac696847
No known key found for this signature in database
GPG Key ID: 1426C7DC3F51E16F
1 changed files with 4 additions and 0 deletions

4
Jenkinsfile vendored
View File

@ -32,6 +32,10 @@ node(nodeLabel) {
timeout(30) {
sh './gradlew -iS'
}
stage 'Capture test results and artifacts'
step([$class: 'JUnitResultArchiver', testResults: 'build/test-results/**/*.xml'])
step([$class: 'ArtifactArchiver', artifacts: 'build/libs/*.jar', fingerprint: true])
}
// vim: ft=groovy