From 7f839b87cecd42b4c4bd43e0aba9e86aab8fd3bc Mon Sep 17 00:00:00 2001 From: Thad House Date: Mon, 7 Oct 2019 20:47:01 -0700 Subject: [PATCH] Remove timeouts from azure builds (#1924) Windows builds are occasionally crossing 1 hour and failing --- azure-pipelines.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 063432218c..a47ce9ef09 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -32,6 +32,8 @@ stages: container: wpilib2020 + timeoutInMinutes: 0 + steps: - task: Gradle@2 condition: and(succeeded(), not(startsWith(variables['Build.SourceBranch'], 'refs/tags/v'))) @@ -66,6 +68,8 @@ stages: container: raspbian + timeoutInMinutes: 0 + steps: - task: Gradle@2 condition: and(succeeded(), not(startsWith(variables['Build.SourceBranch'], 'refs/tags/v'))) @@ -100,6 +104,8 @@ stages: container: aarch64 + timeoutInMinutes: 0 + steps: - task: Gradle@2 condition: and(succeeded(), not(startsWith(variables['Build.SourceBranch'], 'refs/tags/v'))) @@ -134,6 +140,8 @@ stages: container: ubuntu + timeoutInMinutes: 0 + steps: - task: Gradle@2 condition: and(succeeded(), not(startsWith(variables['Build.SourceBranch'], 'refs/tags/v'))) @@ -168,6 +176,8 @@ stages: container: ubuntu + timeoutInMinutes: 0 + steps: - script: | sudo pip3 install wpiformat @@ -187,6 +197,8 @@ stages: container: wpilib2020 + timeoutInMinutes: 0 + steps: - task: CMake@1 inputs: @@ -199,6 +211,8 @@ stages: - job: Windows_64_Bit pool: vmImage: 'windows-2019' + + timeoutInMinutes: 0 steps: - task: Gradle@2 condition: and(succeeded(), not(startsWith(variables['Build.SourceBranch'], 'refs/tags/v'))) @@ -232,6 +246,8 @@ stages: - job: Windows_32_Bit pool: vmImage: 'windows-2019' + + timeoutInMinutes: 0 steps: - powershell: | mkdir build @@ -275,6 +291,8 @@ stages: - job: Mac pool: vmImage: 'macOS-10.14' + + timeoutInMinutes: 0 steps: - script: | mkdir build @@ -319,6 +337,8 @@ stages: pool: vmImage: 'macOS-10.14' + timeoutInMinutes: 0 + steps: - checkout: none - script: |