You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by mc...@apache.org on 2020/05/02 15:19:50 UTC

[cassandra-builds] branch master updated: ninja-fix: Jenkins junit plugin OOMs on the aggregated test report, revert to using the non-aggregated test reports.

This is an automated email from the ASF dual-hosted git repository.

mck pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cassandra-builds.git


The following commit(s) were added to refs/heads/master by this push:
     new 9044e5d  ninja-fix: Jenkins junit plugin OOMs on the aggregated test report, revert to using the non-aggregated test reports.
9044e5d is described below

commit 9044e5dccc87e8015517d2292240546c3cc3e88c
Author: mck <mc...@apache.org>
AuthorDate: Sat May 2 17:18:08 2020 +0200

    ninja-fix: Jenkins junit plugin OOMs on the aggregated test report, revert to using the non-aggregated test reports.
---
 jenkins-dsl/cassandra_pipeline.groovy | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/jenkins-dsl/cassandra_pipeline.groovy b/jenkins-dsl/cassandra_pipeline.groovy
index 1daad09..9f4ae75 100644
--- a/jenkins-dsl/cassandra_pipeline.groovy
+++ b/jenkins-dsl/cassandra_pipeline.groovy
@@ -231,7 +231,9 @@ pipeline {
         steps {
             sh "git clone https://gitbox.apache.org/repos/asf/cassandra-builds.git"
             sh "./cassandra-builds/build-scripts/cassandra-test-report.sh"
-            junit 'TESTS-TestSuites.xml'
+            // remove TESTS-TestSuites.xml as it is too big for the jenkins junit plugin to parse
+            sh 'rm TESTS-TestSuites.xml'
+            junit '**/TEST*.xml,**/cqlshlib.xml,**/nosetests.xml'
         }
       }
   }


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