From e290e748213ee239b7cee129e5c759146f57b0a0 Mon Sep 17 00:00:00 2001 From: Kevin Li Date: Mon, 24 Jul 2023 16:24:20 -0700 Subject: [PATCH] ci: Increase the test timeout due to retry (#500) Issue #, if available: *Description of changes:* Increase the test timeout to 3 hours because it can have at most 3 retries. One test run can currently take about 45 - 60 mins *Testing done:* Tested via previous nightly build - [X] I've reviewed the guidance in CONTRIBUTING.md #### License Acceptance By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license. Signed-off-by: Kevin Li --- .github/workflows/build-and-test-pkg.yaml | 4 ++-- .github/workflows/release-homebrew.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-and-test-pkg.yaml b/.github/workflows/build-and-test-pkg.yaml index 51dd4f9e9..d13a30a99 100644 --- a/.github/workflows/build-and-test-pkg.yaml +++ b/.github/workflows/build-and-test-pkg.yaml @@ -125,7 +125,7 @@ jobs: needs: - get-tag-name - macos-aarch64-pkg-build - timeout-minutes: 60 + timeout-minutes: 180 env: ACCESS_TOKEN: ${{ secrets.FINCH_BOT_TOKEN }} steps: @@ -236,7 +236,7 @@ jobs: needs: - get-tag-name - macos-x86-64-pkg-build - timeout-minutes: 60 + timeout-minutes: 180 env: ACCESS_TOKEN: ${{ secrets.FINCH_BOT_TOKEN }} steps: diff --git a/.github/workflows/release-homebrew.yaml b/.github/workflows/release-homebrew.yaml index 76ca22139..f5834aef7 100644 --- a/.github/workflows/release-homebrew.yaml +++ b/.github/workflows/release-homebrew.yaml @@ -48,7 +48,7 @@ jobs: [self-hosted, macos, arm64, 13, release], ] runs-on: ${{ matrix.os }} - timeout-minutes: 60 + timeout-minutes: 180 env: FINCH_TAG: ${{ needs.get-latest-tag.outputs.tag }} FINCH_VERSION: ${{ needs.get-latest-tag.outputs.version }} @@ -171,7 +171,7 @@ jobs: [self-hosted, macos, amd64, 13, release], ] runs-on: ${{ matrix.os }} - timeout-minutes: 60 + timeout-minutes: 180 env: FINCH_TAG: ${{ needs.get-latest-tag.outputs.tag }} FINCH_VERSION: ${{ needs.get-latest-tag.outputs.version }}