From ed07423342db2f4d9e3d481d1adfcf8567913214 Mon Sep 17 00:00:00 2001 From: Mark Vieira Date: Thu, 9 Feb 2023 08:39:50 -0800 Subject: [PATCH] Capture logs and config from junit test clusters in CI --- .../src/main/groovy/elasticsearch.build-complete.gradle | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/build-tools-internal/src/main/groovy/elasticsearch.build-complete.gradle b/build-tools-internal/src/main/groovy/elasticsearch.build-complete.gradle index c69ef5d3ed9f8..c4220d642aed5 100644 --- a/build-tools-internal/src/main/groovy/elasticsearch.build-complete.gradle +++ b/build-tools-internal/src/main/groovy/elasticsearch.build-complete.gradle @@ -27,10 +27,17 @@ if (buildNumber && performanceTest == null && GradleUtils.isIncludedBuild(projec include("**/*.hprof") include("**/build/test-results/**/*.xml") include("**/build/testclusters/**") + include("**/build/testrun/*/temp/**") exclude("**/build/testclusters/**/data/**") exclude("**/build/testclusters/**/distro/**") exclude("**/build/testclusters/**/repo/**") exclude("**/build/testclusters/**/extract/**") + exclude("**/build/testclusters/**/tmp/**") + exclude("**/build/testrun/*/temp/**/data/**") + exclude("**/build/testrun/*/temp/**/distro/**") + exclude("**/build/testrun/*/temp/**/repo/**") + exclude("**/build/testrun/*/temp/**/extract/**") + exclude("**/build/testrun/*/temp/**/tmp/**") } .files .findAll { Files.isRegularFile(it.toPath()) }