From af213d78dd9c68ff7fce48926850e142851cdad8 Mon Sep 17 00:00:00 2001 From: Lingfan Gao Date: Fri, 3 Feb 2023 17:37:31 +0100 Subject: [PATCH] fix: Remove ReallyClean from CI pipelines Since component governance is forced, we should disable this step since it will remove all files from the working directory and fail component governance --- .devops/templates/cleanup.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.devops/templates/cleanup.yml b/.devops/templates/cleanup.yml index dd967838ff6cc9..5e6fb5430aa570 100644 --- a/.devops/templates/cleanup.yml +++ b/.devops/templates/cleanup.yml @@ -12,7 +12,7 @@ steps: # In theory the "workspace: clean: all" setting should handle this, but it doesn't always seem to work. # ReallyClean is a custom task from our internal UI Fabric azure-devops-tasks repo which attempts to # delete the given directory with multiple retries. - - task: ReallyClean@0 - inputs: - directory: $(Agent.BuildDirectory) - condition: always() + # - task: ReallyClean@0 + # inputs: + # directory: $(Agent.BuildDirectory) + # condition: always()