From 7ced7d721e3e1da8f0df8634370f5698ec7a6e12 Mon Sep 17 00:00:00 2001 From: Billy O'Neal Date: Wed, 24 Jun 2020 11:39:47 -0700 Subject: [PATCH] [vcpkg] Do not fail just because cleaning tombstones failed in CI. (#12074) --- scripts/azure-pipelines/azure-pipelines.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/azure-pipelines/azure-pipelines.yml b/scripts/azure-pipelines/azure-pipelines.yml index f729b3ee7a..061a6c2de7 100644 --- a/scripts/azure-pipelines/azure-pipelines.yml +++ b/scripts/azure-pipelines/azure-pipelines.yml @@ -20,6 +20,7 @@ stages: inputs: filePath: 'scripts/azure-pipelines/windows/initialize-environment.ps1' - script: rmdir /s /q W:\fail + failOnStderr: false displayName: 'Delete W:\fail' - job: linux displayName: 'Clean Linux Tombstones' @@ -28,6 +29,7 @@ stages: steps: - bash: rm -rf /archives/fail displayName: 'Delete /archives/fail' + failOnStderr: false - job: osx displayName: 'Clean MacOS Tombstones' condition: ${{ variables['delete-tombstones-first'] }} @@ -37,6 +39,7 @@ stages: steps: - bash: rm -rf /Users/vagrant/Data/archives/fail displayName: 'Delete /Users/vagrant/Data/archives/fail' + failOnStderr: false - stage: run_pr_test displayName: 'Run PR Test'