mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-02 19:39:01 +08:00
1d3e985e4f
* [vcpkg] Remove do-nothing Set-Content from Windows azure-pipelines.yml. * [vcpkg] Fix OSX CI by ensuring the downloads directory exists in advance, and extract common command line parameters with powershell splatting. * [tensorflow-cc] Prevent hang building tensorflow-cc asking to configure iOS. * Skip ignition-msgs5:x64-osx
33 lines
946 B
YAML
33 lines
946 B
YAML
# Copyright (c) Microsoft Corporation.
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
variables:
|
|
windows-pool: 'PrWin-2020-04-28'
|
|
linux-pool: 'PrLin-2020-05-07'
|
|
|
|
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'
|
|
- script: rmdir /s /q W:\fail
|
|
displayName: 'Delete W:\fail'
|
|
- job: linux
|
|
displayName: 'Clean Linux Tombstones'
|
|
pool: $(linux-pool)
|
|
steps:
|
|
- bash: rm -rf /archives/fail
|
|
displayName: 'Delete /archives/fail'
|
|
- job: osx
|
|
displayName: 'Clean MacOS Tombstones'
|
|
pool:
|
|
name: vcpkgAgentPool
|
|
demands: Agent.OS -equals Darwin
|
|
steps:
|
|
- bash: rm -rf /Users/vagrant/Data/archives/fail
|
|
displayName: 'Delete /Users/vagrant/Data/archives/fail'
|