Skip to content

Commit

Permalink
[INFRA] Extend github actions timeouts to prevent CI failures
Browse files Browse the repository at this point in the history
  • Loading branch information
igorT committed Jun 5, 2020
1 parent 489fca9 commit 66fc6e1
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:

jobs:
lint:
timeout-minutes: 4
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
Expand All @@ -31,7 +31,7 @@ jobs:
run: yarn problems

test-infra:
timeout-minutes: 4
timeout-minutes: 8
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:


basic-tests:
timeout-minutes: 15
timeout-minutes: 20
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:
- name: Install dependencies
run: yarn install
- name: Fastboot Test ${{ matrix.scenario }}
timeout-minutes: 4
timeout-minutes: 6
run: yarn test:fastboot ${{ matrix.scenario }}

basic-tests-ie11:
Expand All @@ -169,13 +169,13 @@ jobs:
run: |
yarn run testem launchers
- name: Production tests with ${{ matrix.scenario }}
timeout-minutes: 6
timeout-minutes: 8
env:
CI: true
run: yarn test:try-one ${{ matrix.scenario }} --- ember test -e production

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

releases:
timeout-minutes: 4
timeout-minutes: 6
needs: [lint, basic-tests]
if: |
github.event_name == 'pull_request' && (
Expand All @@ -235,7 +235,7 @@ jobs:
run: yarn test:try-one ${{ matrix.scenario }}

additional-scenarios:
timeout-minutes: 5
timeout-minutes: 7
needs: [lint, basic-tests]
strategy:
matrix:
Expand Down Expand Up @@ -304,7 +304,7 @@ jobs:
- name: Generate package tarballs
run: node ./bin/packages-for-commit.js
- name: Run Tests
timeout-minutes: 12
timeout-minutes: 16
env:
CI: true
run: yarn test-external:${{ matrix.partner }}
Expand Down

0 comments on commit 66fc6e1

Please sign in to comment.