You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by jo...@apache.org on 2018/01/06 17:24:02 UTC

geronimo-safeguard git commit: Fixing junit pattern.

Repository: geronimo-safeguard
Updated Branches:
  refs/heads/master c2c72a65f -> 761887d3a


Fixing junit pattern.


Project: http://git-wip-us.apache.org/repos/asf/geronimo-safeguard/repo
Commit: http://git-wip-us.apache.org/repos/asf/geronimo-safeguard/commit/761887d3
Tree: http://git-wip-us.apache.org/repos/asf/geronimo-safeguard/tree/761887d3
Diff: http://git-wip-us.apache.org/repos/asf/geronimo-safeguard/diff/761887d3

Branch: refs/heads/master
Commit: 761887d3a75cae845a6752e24894232a593e07d4
Parents: c2c72a6
Author: John D. Ament <jo...@apache.org>
Authored: Sat Jan 6 12:23:57 2018 -0500
Committer: John D. Ament <jo...@apache.org>
Committed: Sat Jan 6 12:23:57 2018 -0500

----------------------------------------------------------------------
 Jenkinsfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/geronimo-safeguard/blob/761887d3/Jenkinsfile
----------------------------------------------------------------------
diff --git a/Jenkinsfile b/Jenkinsfile
index 2e1318e..ef4be5a 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -13,13 +13,13 @@ pipeline {
         stage('Test'){
             steps {
                 sh 'mvn -B verify -POWB2'
-                junit 'reports/**/*.xml'
+                junit '**/TEST-*.xml'
             }
         }
         stage('Test - Weld') {
             steps {
                 sh 'mvn -B verify -PWeld3'
-                junit 'reports/**/*.xml'
+                junit '**/TEST-*.xml'
             }
         }
         stage('Deploy') {