From 3eb77e8d86c131379a2229c605e589f5bd7d3511 Mon Sep 17 00:00:00 2001 From: Sean Flanigan Date: Fri, 15 Dec 2017 12:11:44 +1000 Subject: [PATCH] Disable StabilityTestDataPublisher (#634) --- Jenkinsfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index b5aa6c932d9..fd98128920f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -471,11 +471,12 @@ void integrationTests(String appserver) { echo "Capturing JUnit results" if (setJUnitPrefix(appserver, failsafeTestReports)) { - junit(testResults: "**/${failsafeTestReports}", + junit(testResults: "**/${failsafeTestReports}" // NB: if this is enabled, make sure (a) max history in Jenkins // Configuration is small (eg 3) or // (b) https://issues.jenkins-ci.org/browse/JENKINS-33168 is fixed. - testDataPublishers: [[$class: 'StabilityTestDataPublisher']] + // Update: even with max=3 it can take many hours. Disabling for now. + // ,testDataPublishers: [[$class: 'StabilityTestDataPublisher']] ) // Reduce workspace size sh "git clean -fdx"