From 3d75ddcdc2537c45ea88f58f4c2753273d4caeb6 Mon Sep 17 00:00:00 2001 From: Roberto Dip Date: Mon, 29 Aug 2022 12:50:16 -0300 Subject: [PATCH] increase the CI timeout to install Docker on macOS (#7430) in #7399 we reduced the timeout to 10 minutes, however there are multiple timing out and failing on main on the install docker step. --- .github/workflows/fleet-and-orbit.yml | 2 +- .github/workflows/fleetctl-preview-latest.yml | 2 +- .github/workflows/fleetctl-preview.yml | 2 +- .github/workflows/test-packaging.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/fleet-and-orbit.yml b/.github/workflows/fleet-and-orbit.yml index 46c36ec7c..631f0af00 100644 --- a/.github/workflows/fleet-and-orbit.yml +++ b/.github/workflows/fleet-and-orbit.yml @@ -198,7 +198,7 @@ jobs: # From https://github.com/docker/for-mac/issues/2359#issuecomment-943131345 # FIXME: lock Docker version to 4.10.0 as newer versions fail to initialize - name: Install Docker - timeout-minutes: 10 + timeout-minutes: 20 if: matrix.os == 'macos-latest' run: | curl -L https://raw.githubusercontent.com/Homebrew/homebrew-cask/c65030146a5cf2070c2499b6c68e2c3495c99731/Casks/docker.rb > docker.rb diff --git a/.github/workflows/fleetctl-preview-latest.yml b/.github/workflows/fleetctl-preview-latest.yml index 70ff353a7..845f591a4 100644 --- a/.github/workflows/fleetctl-preview-latest.yml +++ b/.github/workflows/fleetctl-preview-latest.yml @@ -37,7 +37,7 @@ jobs: # From https://github.com/docker/for-mac/issues/2359#issuecomment-943131345 # FIXME: lock Docker version to 4.10.0 as newer versions fail to initialize - name: Install Docker - timeout-minutes: 10 + timeout-minutes: 20 if: matrix.os == 'macos-latest' run: | curl -L https://raw.githubusercontent.com/Homebrew/homebrew-cask/c65030146a5cf2070c2499b6c68e2c3495c99731/Casks/docker.rb > docker.rb diff --git a/.github/workflows/fleetctl-preview.yml b/.github/workflows/fleetctl-preview.yml index f4e2f42eb..207e960a8 100644 --- a/.github/workflows/fleetctl-preview.yml +++ b/.github/workflows/fleetctl-preview.yml @@ -24,7 +24,7 @@ jobs: # From https://github.com/docker/for-mac/issues/2359#issuecomment-943131345 # FIXME: lock Docker version to 4.10.0 as newer versions fail to initialize - name: Install Docker - timeout-minutes: 10 + timeout-minutes: 20 if: contains(matrix.os, 'macos') run: | curl -L https://raw.githubusercontent.com/Homebrew/homebrew-cask/c65030146a5cf2070c2499b6c68e2c3495c99731/Casks/docker.rb > docker.rb diff --git a/.github/workflows/test-packaging.yml b/.github/workflows/test-packaging.yml index 84103a18a..d9f7954e0 100644 --- a/.github/workflows/test-packaging.yml +++ b/.github/workflows/test-packaging.yml @@ -34,7 +34,7 @@ jobs: # From https://github.com/docker/for-mac/issues/2359#issuecomment-943131345 # FIXME: lock Docker version to 4.10.0 as newer versions fail to initialize - name: Install Docker - timeout-minutes: 10 + timeout-minutes: 20 if: matrix.os == 'macos-latest' run: | curl -L https://raw.githubusercontent.com/Homebrew/homebrew-cask/c65030146a5cf2070c2499b6c68e2c3495c99731/Casks/docker.rb > docker.rb