mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-02 23:28:59 +08:00
6920b49047
* [vcpkg] Bump Linux VM memory size and do all operations on the temporary disk. * [llvm] disable optional dependencies to libxml2 and zlib * [vcpkg] Reduce quotas on the share to something reasonable. * [mpir] Skip on Linux because it conflicts with libgmp. Co-authored-by: yurybura <yurybura@gmail.com>
41 lines
1.2 KiB
YAML
41 lines
1.2 KiB
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 archives\fail
|
|
displayName: 'Delete archives\fail'
|
|
- job: linux
|
|
displayName: 'Clean Linux Tombstones'
|
|
pool: $(linux-pool)
|
|
steps:
|
|
- task: Bash@3
|
|
displayName: 'Initialize Environment'
|
|
inputs:
|
|
filePath: scripts/azure-pipelines/linux/initialize-environment.sh
|
|
- bash: rm -rf archives/fail
|
|
displayName: 'Delete archives/fail'
|
|
- job: osx
|
|
displayName: 'Clean MacOS Tombstones'
|
|
pool:
|
|
name: vcpkgAgentPool
|
|
demands: Agent.OS -equals Darwin
|
|
steps:
|
|
- task: Bash@3
|
|
displayName: 'Initialize Environment'
|
|
inputs:
|
|
filePath: 'scripts/azure-pipelines/osx/initialize-environment.sh'
|
|
- bash: rm -rf archives/fail
|
|
displayName: 'Delete archives/fail'
|