diff options
| author | bors <bors@rust-lang.org> | 2019-05-26 18:48:12 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2019-05-26 18:48:12 +0000 |
| commit | 5187be620c76a313a19b9b596e1bce3a80a345dd (patch) | |
| tree | e6a298eb87e3d8461da83e86699b93e1b878f0c1 | |
| parent | dc6db14e1cd60012f25be4fd8d2eb96ea5b4bb68 (diff) | |
| parent | 4af19b0ce9c438a222e5fc30c91cbc2db3afc37b (diff) | |
| download | rust-5187be620c76a313a19b9b596e1bce3a80a345dd.tar.gz rust-5187be620c76a313a19b9b596e1bce3a80a345dd.zip | |
Auto merge of #61213 - pietroalbini:fix-azure-multiple-checkouts, r=alexcrichton
azure: fix multiple checkouts on azure We were checking out the rustc repo multiple times on auto macOS, and that was causing an error on the Azure side since multiple checkouts are apparently not supported. This removes the extra checkout. r? @alexcrichton fixes #61170
| -rw-r--r-- | .azure-pipelines/auto.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.azure-pipelines/auto.yml b/.azure-pipelines/auto.yml index 7bb38a4e8eb..4cdf8423c08 100644 --- a/.azure-pipelines/auto.yml +++ b/.azure-pipelines/auto.yml @@ -11,6 +11,7 @@ variables: jobs: - job: Linux + timeoutInMinutes: 600 pool: vmImage: ubuntu-16.04 steps: @@ -150,11 +151,10 @@ jobs: IMAGE: mingw-check - job: macOS + timeoutInMinutes: 600 pool: vmImage: macos-10.13 steps: - - checkout: self - fetchDepth: 2 - template: steps/run.yml strategy: matrix: @@ -214,6 +214,7 @@ jobs: - job: Windows + timeoutInMinutes: 600 pool: vmImage: 'vs2017-win2016' steps: |
