build: Add timeouts to all ci jobs
This commit is contained in:
parent
cc9e046aa2
commit
958119a7ef
|
|
@ -6,6 +6,7 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
e2ee_test:
|
e2ee_test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
timeout-minutes: 30
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
homeserver: [synapse, dendrite, conduit]
|
homeserver: [synapse, dendrite, conduit]
|
||||||
|
|
@ -30,6 +31,7 @@ jobs:
|
||||||
|
|
||||||
coverage_without_olm:
|
coverage_without_olm:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
timeout-minutes: 5
|
||||||
env:
|
env:
|
||||||
NO_OLM: 1
|
NO_OLM: 1
|
||||||
steps:
|
steps:
|
||||||
|
|
@ -74,6 +76,7 @@ jobs:
|
||||||
merge_converage:
|
merge_converage:
|
||||||
if: ${{ !cancelled() }}
|
if: ${{ !cancelled() }}
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
timeout-minutes: 30
|
||||||
needs: [coverage, coverage_without_olm]
|
needs: [coverage, coverage_without_olm]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
@ -103,6 +106,7 @@ jobs:
|
||||||
|
|
||||||
dart_web_compatible:
|
dart_web_compatible:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
timeout-minutes: 30
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- run: cat .github/workflows/versions.env >> $GITHUB_ENV
|
- run: cat .github/workflows/versions.env >> $GITHUB_ENV
|
||||||
|
|
@ -118,6 +122,7 @@ jobs:
|
||||||
|
|
||||||
database_web_tests:
|
database_web_tests:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
timeout-minutes: 10
|
||||||
env:
|
env:
|
||||||
NO_OLM: 1
|
NO_OLM: 1
|
||||||
steps:
|
steps:
|
||||||
|
|
|
||||||
|
|
@ -20,6 +20,7 @@ jobs:
|
||||||
GH_TOKEN: ${{ github.token }}
|
GH_TOKEN: ${{ github.token }}
|
||||||
needs: [publish]
|
needs: [publish]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
timeout-minutes: 10
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- name: Create release
|
- name: Create release
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue