Skip to content

Commit 5187be6

Browse files
committed
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
2 parents dc6db14 + 4af19b0 commit 5187be6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.azure-pipelines/auto.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ variables:
1111

1212
jobs:
1313
- job: Linux
14+
timeoutInMinutes: 600
1415
pool:
1516
vmImage: ubuntu-16.04
1617
steps:
@@ -150,11 +151,10 @@ jobs:
150151
IMAGE: mingw-check
151152

152153
- job: macOS
154+
timeoutInMinutes: 600
153155
pool:
154156
vmImage: macos-10.13
155157
steps:
156-
- checkout: self
157-
fetchDepth: 2
158158
- template: steps/run.yml
159159
strategy:
160160
matrix:
@@ -214,6 +214,7 @@ jobs:
214214

215215

216216
- job: Windows
217+
timeoutInMinutes: 600
217218
pool:
218219
vmImage: 'vs2017-win2016'
219220
steps:

0 commit comments

Comments
 (0)