You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ce...@apache.org on 2021/04/07 05:33:19 UTC

svn commit: r1888458 - /poi/trunk/jenkins/create_jobs.groovy

Author: centic
Date: Wed Apr  7 05:33:18 2021
New Revision: 1888458

URL: http://svn.apache.org/viewvc?rev=1888458&view=rev
Log:
Adjust path for archiving JUnit files to capture both locations that are in use

Somehow JUnit stores test-results either under test-result or under test-result/test,
so let's look at both directories for now

Modified:
    poi/trunk/jenkins/create_jobs.groovy

Modified: poi/trunk/jenkins/create_jobs.groovy
URL: http://svn.apache.org/viewvc/poi/trunk/jenkins/create_jobs.groovy?rev=1888458&r1=1888457&r2=1888458&view=diff
==============================================================================
--- poi/trunk/jenkins/create_jobs.groovy (original)
+++ poi/trunk/jenkins/create_jobs.groovy Wed Apr  7 05:33:18 2021
@@ -474,7 +474,7 @@ poijobs.each { poijob ->
                 warnings(['Java Compiler (javac)', 'JavaDoc Tool'], null) {
                     resolveRelativePaths()
                 }
-                archiveJunit('*/build/test-results/*.xml') {
+                archiveJunit('*/build/test-results/**/TEST-*.xml') {
                     testDataPublishers {
                         publishTestStabilityData()
                     }
@@ -580,7 +580,7 @@ xmlbeansjobs.each { xjob ->
             warnings(['Java Compiler (javac)', 'JavaDoc Tool'], null) {
                 resolveRelativePaths()
             }
-            archiveJunit('build/test-results/TEST-*.xml') {
+            archiveJunit('build/test-results/**/TEST-*.xml') {
                 testDataPublishers {
                     publishTestStabilityData()
                 }



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org