From d185feae4f0d383cf3f3b250f84ac007b488e6d5 Mon Sep 17 00:00:00 2001 From: Pietro Albini Date: Sun, 26 May 2019 17:12:13 +0200 Subject: [PATCH 1/2] ci: 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. --- .azure-pipelines/auto.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.azure-pipelines/auto.yml b/.azure-pipelines/auto.yml index 7bb38a4e8eb9e..38c933464373a 100644 --- a/.azure-pipelines/auto.yml +++ b/.azure-pipelines/auto.yml @@ -153,8 +153,6 @@ jobs: pool: vmImage: macos-10.13 steps: - - checkout: self - fetchDepth: 2 - template: steps/run.yml strategy: matrix: From 4af19b0ce9c438a222e5fc30c91cbc2db3afc37b Mon Sep 17 00:00:00 2001 From: Pietro Albini Date: Sun, 26 May 2019 18:35:32 +0200 Subject: [PATCH 2/2] ci: increase timeout on the auto branch in azure --- .azure-pipelines/auto.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.azure-pipelines/auto.yml b/.azure-pipelines/auto.yml index 38c933464373a..4cdf8423c0885 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,6 +151,7 @@ jobs: IMAGE: mingw-check - job: macOS + timeoutInMinutes: 600 pool: vmImage: macos-10.13 steps: @@ -212,6 +214,7 @@ jobs: - job: Windows + timeoutInMinutes: 600 pool: vmImage: 'vs2017-win2016' steps: