Remove the nuget cache from the archival
authorMatt Mitchell <mmitche@microsoft.com>
Wed, 8 Mar 2017 20:20:51 +0000 (12:20 -0800)
committerMatt Mitchell <mmitche@microsoft.com>
Wed, 8 Mar 2017 20:20:51 +0000 (12:20 -0800)
This is taking an incredible amount of space and causing problems

Commit migrated from https://github.com/dotnet/coreclr/commit/099085d2dc49f23cd255c04966209dcb364810a0

src/coreclr/netci.groovy

index 02ab148..9bd2964 100755 (executable)
@@ -1623,7 +1623,7 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR
                         if (!Constants.jitStressModeScenarios.containsKey(scenario)) {
                             // For windows, pull full test results and test drops for x86/x64.
                             // No need to pull for stress mode scenarios (downstream builds use the default scenario)
-                            Utilities.addArchival(newJob, "bin/Product/**,bin/tests/tests.zip")
+                            Utilities.addArchival(newJob, "bin/Product/**,bin/tests/tests.zip", "bin/Product/.nuget/**")
                         }
 
                         if (scenario == 'jitdiff') {
@@ -1656,7 +1656,7 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR
                         buildCommands += "set __TestIntermediateDir=int&&build.cmd ${lowerConfiguration} ${architecture}"
                     }
                     // Add archival.
-                    Utilities.addArchival(newJob, "bin/Product/**")
+                    Utilities.addArchival(newJob, "bin/Product/**", "bin/Product/.nuget/**")
                     break
                 case 'arm64':
                     assert (scenario == 'default') || (scenario == 'pri1r2r') || (scenario == 'gcstress0x3') || (scenario == 'gcstress0xc')
@@ -1683,7 +1683,7 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR
                     }
 
                     // Add archival.
-                    Utilities.addArchival(newJob, "bin/Product/**")
+                    Utilities.addArchival(newJob, "bin/Product/**", "bin/Product/.nuget/**")
                     break
                 default:
                     println("Unknown architecture: ${architecture}");
@@ -1741,7 +1741,7 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR
                         // Set time out
                         setTestJobTimeOut(newJob, scenario)
                         // Basic archiving of the build
-                        Utilities.addArchival(newJob, "bin/Product/**,bin/obj/*/tests/**/*.dylib,bin/obj/*/tests/**/*.so")
+                        Utilities.addArchival(newJob, "bin/Product/**,bin/obj/*/tests/**/*.dylib,bin/obj/*/tests/**/*.so", "bin/Product/.nuget/**")
                         // And pal tests
                         Utilities.addXUnitDotNETResults(newJob, '**/pal_tests.xml')
                     }
@@ -1779,7 +1779,7 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR
                         ROOTFS_DIR=/opt/aarch64-linux-gnu-root ./build.sh skipmscorlib arm64 cross verbose ${lowerConfiguration}"""
 
                     // Basic archiving of the build, no pal tests
-                    Utilities.addArchival(newJob, "bin/Product/**")
+                    Utilities.addArchival(newJob, "bin/Product/**", "bin/Product/.nuget/**")
                     break
                 case 'arm':
                     // All builds for ARM architecture are run on Ubuntu currently
@@ -1789,7 +1789,7 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR
                             ROOTFS_DIR=/opt/arm-linux-genueabihf-root ./build.sh skipmscorlib arm cross verbose ${lowerConfiguration}"""
 
                         // Basic archiving of the build, no pal tests
-                        Utilities.addArchival(newJob, "bin/Product/**")
+                        Utilities.addArchival(newJob, "bin/Product/**", "bin/Product/.nuget/**")
                         break
                     }
                     else {
@@ -1819,7 +1819,7 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR
 
 
                         // Basic archiving of the build
-                        Utilities.addArchival(newJob, "bin/Product/**")
+                        Utilities.addArchival(newJob, "bin/Product/**", "bin/Product/.nuget/**")
                         break
                     }
                 default: