From 24981d7d8c6f7293ae7e4c40a4f215a4cbbb22bd Mon Sep 17 00:00:00 2001 From: Doug Bunting <6431421+dougbu@users.noreply.github.com> Date: Thu, 30 Sep 2021 11:38:53 -0700 Subject: [PATCH] [release/6.0] Don't clear NuGet caches at all (#37122) - backport of #36898 Don't clear NuGet caches at all (#36898) - `$use_global_nuget_cache` and `$useGlobalNuGetCache` have default values in our pipelines - therefore, cache is always within `$(System.DefaultWorkingDirectory)` and should not exist at job start --- .azure/pipelines/jobs/default-build.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.azure/pipelines/jobs/default-build.yml b/.azure/pipelines/jobs/default-build.yml index 2aaf34c9206..4789a46eac7 100644 --- a/.azure/pipelines/jobs/default-build.yml +++ b/.azure/pipelines/jobs/default-build.yml @@ -175,14 +175,6 @@ jobs: displayName: Install Node 14.x inputs: versionSpec: 14.x - - ${{ if eq(parameters.agentOs, 'Windows') }}: - - task: NuGetToolInstaller@1 - - task: NuGetCommand@2 - displayName: 'Clear NuGet caches' - condition: succeeded() - inputs: - command: custom - arguments: 'locals all -clear' - ${{ if and(eq(parameters.installJdk, 'true'), eq(parameters.agentOs, 'Windows')) }}: - powershell: ./eng/scripts/InstallJdk.ps1 displayName: Install JDK 11 -- GitLab