This is an automated email from the ASF dual-hosted git repository. potiuk pushed a commit to branch v2-8-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 88a0ba80cc18d7d4a1df45a1fae4ef882698447e Author: Jarek Potiuk <[email protected]> AuthorDate: Sat Jan 13 10:58:42 2024 +0100 Increase timeout for cache building (#36762) When we build cach from the scratch, cache preparation can take longer than 50 minutes (right now it's about an hour). Timeout increase to 120 minutes should solve the problem that in such case the PROD cache building gets cancelled and you neeed to re-run it to succeed. (cherry picked from commit c7ade012cb81158e2bc11b36febcfae82bc759ab) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 922efd9854..b6cd83c0fb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2301,7 +2301,7 @@ jobs: # It rebuilds all images using just-pushed constraints using buildx and pushes them to registry # It will automatically check if a new python image was released and will pull the latest one if needed push-buildx-cache-to-github-registry: - timeout-minutes: 50 + timeout-minutes: 120 name: "Push Image Cache" runs-on: ${{fromJSON(needs.build-info.outputs.runs-on)}} needs:
