diff options
| author | nicole mazzuca <mazzucan@outlook.com> | 2020-05-19 12:23:39 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-19 12:23:39 -0700 |
| commit | e806b2ed384fce2487562371fb32d9528d0c178a (patch) | |
| tree | 43d04433ef2a7b80391e5160e1a290b86302d317 | |
| parent | 3f7bee619a838109f7b6d8479e7faf9dc1bb0e54 (diff) | |
| download | vcpkg-e806b2ed384fce2487562371fb32d9528d0c178a.tar.gz vcpkg-e806b2ed384fce2487562371fb32d9528d0c178a.zip | |
[vcpkg CI] Clean git directory before clone (#11450)
| -rw-r--r-- | scripts/azure-pipelines/linux/azure-pipelines.yml | 2 | ||||
| -rw-r--r-- | scripts/azure-pipelines/osx/azure-pipelines.yml | 2 | ||||
| -rw-r--r-- | scripts/azure-pipelines/windows/azure-pipelines.yml | 3 |
3 files changed, 6 insertions, 1 deletions
diff --git a/scripts/azure-pipelines/linux/azure-pipelines.yml b/scripts/azure-pipelines/linux/azure-pipelines.yml index 7120a9323..67e9945a7 100644 --- a/scripts/azure-pipelines/linux/azure-pipelines.yml +++ b/scripts/azure-pipelines/linux/azure-pipelines.yml @@ -6,6 +6,8 @@ jobs: - job: x64_linux
pool:
name: ${{ parameters.poolName }}
+ workspace:
+ clean: resources
timeoutInMinutes: 1440 # 1 day
steps:
- bash: |
diff --git a/scripts/azure-pipelines/osx/azure-pipelines.yml b/scripts/azure-pipelines/osx/azure-pipelines.yml index 2427a899e..b06bffb6f 100644 --- a/scripts/azure-pipelines/osx/azure-pipelines.yml +++ b/scripts/azure-pipelines/osx/azure-pipelines.yml @@ -7,6 +7,8 @@ jobs: pool:
name: vcpkgAgentPool
demands: Agent.OS -equals Darwin
+ workspace:
+ clean: resources
timeoutInMinutes: 1440 # 1 day
steps:
- bash: |
diff --git a/scripts/azure-pipelines/windows/azure-pipelines.yml b/scripts/azure-pipelines/windows/azure-pipelines.yml index 559037e3b..71ffc7828 100644 --- a/scripts/azure-pipelines/windows/azure-pipelines.yml +++ b/scripts/azure-pipelines/windows/azure-pipelines.yml @@ -6,7 +6,8 @@ jobs: - job: ${{ parameters.jobName }}
pool:
name: ${{ parameters.poolName }}
-
+ workspace:
+ clean: resources
timeoutInMinutes: 1440 # 1 day
steps:
|
