This is an automated email from the ASF dual-hosted git repository. potiuk pushed a commit to branch v1-10-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 225e9a6b27e06f351dde9906bc0d6e6090ce693b Author: Jarek Potiuk <[email protected]> AuthorDate: Mon Oct 12 12:24:53 2020 +0200 Increase timeout for waiting for images (#11460) Now, when we have many more jobs to run, it might happen that when a lot of PRs are submitted one-after-the-other there might be longer waiting time for building the image. There is only one waiting job per image type, so it does not cost a lot to wait a bit longer, in order to avoid cancellation after 50 minutes of waiting. (cherry picked from commit 697465df8d74ac9a3ab3d1b95d4c0780f347e8e0) --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d27d84c..e5f4897 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -126,7 +126,7 @@ jobs: run: ./scripts/ci/kubernetes/ci_run_helm_testing.sh ci-images: - timeout-minutes: 50 + timeout-minutes: 120 name: "Wait for CI images" runs-on: ubuntu-latest needs: [build-info] @@ -452,7 +452,7 @@ jobs: directory: "./coverage-files" prod-images: - timeout-minutes: 50 + timeout-minutes: 120 name: "Wait for PROD images" runs-on: ubuntu-latest needs: [build-info]
