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

CI timeouts testing bump #7734

Merged
merged 10 commits into from
Nov 3, 2021
Merged
Changes from 9 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
18 changes: 9 additions & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
run: yarn problems

test-infra:
timeout-minutes: 8
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -138,12 +138,12 @@ jobs:
- name: Install dependencies
run: yarn install --frozen-lockfile --network-timeout=300000
- name: Fastboot Test ${{ matrix.scenario }}
timeout-minutes: 6
timeout-minutes: 12
run: yarn test:fastboot ${{ matrix.scenario }}

browser-tests:
needs: [lint]
timeout-minutes: 20
timeout-minutes: 12
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Was this one on purpose?

strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -175,15 +175,15 @@ jobs:
run: |
yarn run testem launchers
- name: Run Production Test
timeout-minutes: 8
timeout-minutes: 10
env:
TESTEM_CI_LAUNCHER: ${{ matrix.launcher }}
CI: true
run:
yarn test:production

floating-dependencies:
timeout-minutes: 6
timeout-minutes: 10
needs: [lint, basic-tests]
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -211,13 +211,13 @@ jobs:
- name: Install dependencies
run: yarn install
- name: Basic tests with ${{ matrix.scenario }}
timeout-minutes: 6
timeout-minutes: 10
env:
CI: true
run: yarn test:try-one ${{ matrix.scenario }}

releases:
timeout-minutes: 6
timeout-minutes: 10
needs: [lint, basic-tests]
if: |
github.event_name == 'pull_request' && (
Expand Down Expand Up @@ -247,7 +247,7 @@ jobs:
continue-on-error: ${{ matrix['continue-on-error'] == true }}

additional-scenarios:
timeout-minutes: 7
timeout-minutes: 8
needs: [lint, basic-tests]
strategy:
matrix:
Expand All @@ -274,7 +274,7 @@ jobs:

node-version-test:
name: Use Node.js ${{ matrix.node-version }}
timeout-minutes: 6
timeout-minutes: 8
needs: [lint, basic-tests]
runs-on: ubuntu-latest
strategy:
Expand Down