From 44ccb0e151e17a95ae54ee16bd4f8a0869843319 Mon Sep 17 00:00:00 2001 From: Felix Angelov Date: Wed, 31 Jul 2024 11:50:52 -0500 Subject: [PATCH] ci(e2e): adjust timeout minutes --- .github/workflows/e2e.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index 282c11bf..ba3ea8e2 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -13,6 +13,7 @@ on: env: SHOREBIRD_TOKEN: ${{ secrets.SHOREBIRD_TOKEN }} FLUTTER_VERSION: 3.22.3 + TIMEOUT_MINUTES: 15 jobs: patch: @@ -22,7 +23,7 @@ jobs: flutter-version: [3.22.3, 3.22.2, 3.19.6] runs-on: ubuntu-latest - timeout-minutes: 15 + timeout-minutes: ${{ env.TIMEOUT_MINUTES }} env: SHOREBIRD_HOSTED_URL: https://api-dev.shorebird.dev @@ -93,7 +94,7 @@ jobs: branch: [stable, main] runs-on: ${{ matrix.os }} - timeout-minutes: 10 + timeout-minutes: ${{ env.TIMEOUT_MINUTES }} env: SHOREBIRD_HOSTED_URL: ${{ matrix.branch == 'stable' && 'https://api.shorebird.dev' || 'https://api-dev.shorebird.dev' }}