Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "chore: limit timeout from 120 or 60 mins to 30 mins" #2138

Merged
merged 1 commit into from
Dec 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
matrix:
version: ["3.7.0", "3.x"]
runs-on: ubuntu-latest
timeout-minutes: 30
timeout-minutes: 60
env:
TEST_APP_ID: ${{ secrets.MY_APP_ID }}
steps:
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
matrix:
version: ["3.7.0", "3.16"]
runs-on: macos-latest
timeout-minutes: 30
timeout-minutes: 60
env:
TEST_APP_ID: ${{ secrets.MY_APP_ID }}
steps:
Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:
matrix:
version: ["3.7.0"]
runs-on: macos-latest
timeout-minutes: 30
timeout-minutes: 60
env:
TEST_APP_ID: ${{ secrets.MY_APP_ID }}
steps:
Expand Down Expand Up @@ -210,7 +210,7 @@ jobs:
matrix:
version: ["3.7.0", "3.x"]
runs-on: windows-2019
timeout-minutes: 30
timeout-minutes: 60
env:
TEST_APP_ID: ${{ secrets.MY_APP_ID }}
steps:
Expand Down Expand Up @@ -242,7 +242,7 @@ jobs:
matrix:
version: ['3.x']
runs-on: ubuntu-latest
timeout-minutes: 30
timeout-minutes: 60
env:
TEST_APP_ID: ${{ secrets.MY_APP_ID }}
steps:
Expand Down Expand Up @@ -312,7 +312,7 @@ jobs:
matrix:
version: ["3.7.0"]
runs-on: macos-latest
timeout-minutes: 30
timeout-minutes: 60
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
Expand All @@ -332,7 +332,7 @@ jobs:
matrix:
version: ['3.x']
runs-on: macos-13
timeout-minutes: 30
timeout-minutes: 60
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
Expand All @@ -358,7 +358,7 @@ jobs:
matrix:
version: ["3.7.0", "3.x"]
runs-on: ubuntu-latest
timeout-minutes: 30
timeout-minutes: 60
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
Expand All @@ -374,7 +374,7 @@ jobs:
name: Run Flutter Android Rendering Tests
if: ${{ !contains(github.event.pull_request.labels.*.name, 'ci:skip') }}
runs-on: ubuntu-latest
timeout-minutes: 30
timeout-minutes: 60
env:
TEST_APP_ID: ${{ secrets.MY_APP_ID }}
steps:
Expand Down Expand Up @@ -442,7 +442,7 @@ jobs:
matrix:
version: ["3.x"]
runs-on: macos-13 # Rendering test on ios simulator need macos 13+
timeout-minutes: 30
timeout-minutes: 60
env:
TEST_APP_ID: ${{ secrets.MY_APP_ID }}
steps:
Expand Down Expand Up @@ -490,7 +490,7 @@ jobs:
matrix:
version: ['3.x']
runs-on: macos-latest
timeout-minutes: 30
timeout-minutes: 60
env:
TEST_APP_ID: ${{ secrets.MY_APP_ID }}
steps:
Expand Down Expand Up @@ -545,7 +545,7 @@ jobs:
matrix:
version: ['3.x']
runs-on: windows-2019
timeout-minutes: 30
timeout-minutes: 60
env:
TEST_APP_ID: ${{ secrets.MY_APP_ID }}
steps:
Expand Down Expand Up @@ -599,7 +599,7 @@ jobs:
matrix:
version: ['3.x']
runs-on: ubuntu-latest
timeout-minutes: 30
timeout-minutes: 60
env:
TEST_APP_ID: ${{ secrets.MY_APP_ID }}
steps:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/integration-test-iris-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
matrix:
version: ['2.10.5', '3.0.0']
runs-on: macos-latest
timeout-minutes: 30
timeout-minutes: 60
env:
TEST_APP_ID: ${{ secrets.MY_APP_ID }}
steps:
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
matrix:
version: ['2.10.5', '3.0.0']
runs-on: macos-latest
timeout-minutes: 30
timeout-minutes: 60
env:
TEST_APP_ID: ${{ secrets.MY_APP_ID }}
steps:
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
matrix:
version: ['2.10.5', '3.0.0']
runs-on: macos-latest
timeout-minutes: 30
timeout-minutes: 60
env:
TEST_APP_ID: ${{ secrets.MY_APP_ID }}
steps:
Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:
matrix:
version: ['2.10.5', '3.0.0']
runs-on: windows-2019
timeout-minutes: 30
timeout-minutes: 60
env:
TEST_APP_ID: ${{ secrets.MY_APP_ID }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/schedule-run-ci-external.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
name: Check permission
if: ${{ !contains(github.event.pull_request.labels.*.name, 'ci:skip') }}
runs-on: ubuntu-latest
timeout-minutes: 30
timeout-minutes: 60
steps:
- name: Check if external contributors
id: check-contributors-result
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/schedule-run-ci-internal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
name: Check permission
if: ${{ !contains(github.event.pull_request.labels.*.name, 'ci:skip') }}
runs-on: ubuntu-latest
timeout-minutes: 30
timeout-minutes: 60
outputs:
is_schedule_run_ci: ${{ steps.check-label-step.outputs.is_schedule_run_ci }}
steps:
Expand Down
Loading