[vcpkg] Do not fail just because cleaning tombstones failed in CI. (#12074)

This commit is contained in:
Billy O'Neal 2020-06-24 11:39:47 -07:00 committed by GitHub
parent eede79eb27
commit 7ced7d721e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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'