From 0bac696847a8396f16de1c65bb0d2fdb493d45d9 Mon Sep 17 00:00:00 2001 From: "R. Tyler Croy" Date: Sat, 26 Dec 2015 21:51:21 -0800 Subject: [PATCH] Archive test results, etc --- Jenkinsfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index f402453..f907ac6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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