2020-05-07 01:31:14 +08:00
|
|
|
# Copyright (c) Microsoft Corporation.
|
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
#
|
|
|
|
variables:
|
|
|
|
windows-pool: 'PrWin-2020-04-28'
|
2020-05-11 06:17:27 +08:00
|
|
|
linux-pool: 'PrLin-2020-05-07'
|
2020-05-07 01:31:14 +08:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
- job: windows
|
|
|
|
displayName: 'Clean Windows Tombstones'
|
|
|
|
pool: $(windows-pool)
|
|
|
|
steps:
|
|
|
|
- task: PowerShell@2
|
|
|
|
displayName: 'Initialize Environment'
|
|
|
|
inputs:
|
|
|
|
filePath: 'scripts/azure-pipelines/windows/initialize-environment.ps1'
|
2020-06-09 13:46:18 +08:00
|
|
|
- script: rmdir /s /q W:\fail
|
|
|
|
displayName: 'Delete W:\fail'
|
2020-05-07 01:31:14 +08:00
|
|
|
- job: linux
|
|
|
|
displayName: 'Clean Linux Tombstones'
|
|
|
|
pool: $(linux-pool)
|
|
|
|
steps:
|
2020-06-09 13:46:18 +08:00
|
|
|
- bash: rm -rf /archives/fail
|
|
|
|
displayName: 'Delete /archives/fail'
|
2020-05-07 01:31:14 +08:00
|
|
|
- job: osx
|
|
|
|
displayName: 'Clean MacOS Tombstones'
|
|
|
|
pool:
|
|
|
|
name: vcpkgAgentPool
|
|
|
|
demands: Agent.OS -equals Darwin
|
|
|
|
steps:
|
2020-06-09 13:46:18 +08:00
|
|
|
- bash: rm -rf /Users/vagrant/Data/archives/fail
|
|
|
|
displayName: 'Delete /Users/vagrant/Data/archives/fail'
|