Skip to content

Commit

Permalink
build: Add timeouts to all ci jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
krille-chan committed Jan 14, 2025
1 parent a069589 commit a07fa8b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
jobs:
e2ee_test:
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
matrix:
homeserver: [synapse, dendrite, conduit]
Expand All @@ -30,6 +31,7 @@ jobs:
coverage_without_olm:
runs-on: ubuntu-latest
timeout-minutes: 5
env:
NO_OLM: 1
steps:
Expand Down Expand Up @@ -74,6 +76,7 @@ jobs:
merge_converage:
if: ${{ !cancelled() }}
runs-on: ubuntu-latest
timeout-minutes: 30
needs: [coverage, coverage_without_olm]
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -103,6 +106,7 @@ jobs:

dart_web_compatible:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- run: cat .github/workflows/versions.env >> $GITHUB_ENV
Expand All @@ -118,6 +122,7 @@ jobs:
database_web_tests:
runs-on: ubuntu-latest
timeout-minutes: 10
env:
NO_OLM: 1
steps:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
GH_TOKEN: ${{ github.token }}
needs: [publish]
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Create release
Expand Down

0 comments on commit a07fa8b

Please sign in to comment.