From 257951f3a30b880d863c813bf5528fef5f44fdea Mon Sep 17 00:00:00 2001 From: Matt Mitchell Date: Wed, 13 Apr 2016 15:22:45 -0700 Subject: [PATCH] Only archive dylib and .so files from the native coreclr tests Avoids a few hundred extra files --- netci.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netci.groovy b/netci.groovy index 893fec2ba02b..c47fdcdcc5f3 100755 --- a/netci.groovy +++ b/netci.groovy @@ -1188,7 +1188,7 @@ combinedScenarios.each { scenario -> // Set time out setTestJobTimeOut(newJob, scenario) // Basic archiving of the build - Utilities.addArchival(newJob, "bin/Product/**,bin/obj/*/tests/**") + Utilities.addArchival(newJob, "bin/Product/**,bin/obj/*/tests/**/*.dylib,bin/obj/*/tests/**/*.so") // And pal tests Utilities.addXUnitDotNETResults(newJob, '**/pal_tests.xml') }