Set timeout for test CI jobs (#7598)

* Set timeout for test CI jobs

* Increase timeout to 1.5h: some Test jobs successfully finish > 1h
This commit is contained in:
Jorge Martin Espinosa 2022-11-24 09:46:11 +01:00 committed by GitHub
parent 452cfd3327
commit ffb5edd2e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 22 additions and 20 deletions

View File

@ -32,6 +32,7 @@ jobs:
name: UI Tests (Synapse) name: UI Tests (Synapse)
needs: should-i-run needs: should-i-run
runs-on: buildjet-4vcpu-ubuntu-2204 runs-on: buildjet-4vcpu-ubuntu-2204
timeout-minutes: 90 # We might need to increase it if the time for tests grows
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:

View File

@ -14,6 +14,7 @@ jobs:
tests: tests:
name: Runs all tests name: Runs all tests
runs-on: buildjet-4vcpu-ubuntu-2204 runs-on: buildjet-4vcpu-ubuntu-2204
timeout-minutes: 90 # We might need to increase it if the time for tests grows
strategy: strategy:
matrix: matrix:
api-level: [28] api-level: [28]