fix(CI): Cypress CI timeout fixes (#13431)

* fix(CI): Increase Server Start timeout to 60 minutes

* fix(CI): timeout on cypress step instead of branch
This commit is contained in:
Akash Jain 2023-10-04 15:14:43 +05:30 committed by GitHub
parent 13f2d3e25e
commit 5a3d759b48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -43,7 +43,6 @@ jobs:
matrix:
job: [0]
environment: test
timeout-minutes: 120
steps:
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
@ -118,14 +117,15 @@ jobs:
env:
INGESTION_DEPENDENCY: "all"
run: ./docker/run_local_docker.sh -d mysql
timeout-minutes: 30
timeout-minutes: 60
- name: Run Cypress Tests
uses: cypress-io/github-action@v4
timeout-minutes: 120
with:
install: false
record: true
parallel: true
parallel: false
working-directory: openmetadata-ui/src/main/resources/ui/
wait-on: 'http://localhost:8585'
group: Tests with database mysql

View File

@ -43,7 +43,6 @@ jobs:
matrix:
job: [0]
environment: test
timeout-minutes: 120
steps:
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
@ -118,14 +117,15 @@ jobs:
env:
INGESTION_DEPENDENCY: "all"
run: ./docker/run_local_docker.sh -d postgresql
timeout-minutes: 30
timeout-minutes: 60
- name: Run Cypress Tests
uses: cypress-io/github-action@v4
timeout-minutes: 120
with:
install: false
record: true
parallel: true
parallel: false
working-directory: openmetadata-ui/src/main/resources/ui/
wait-on: 'http://localhost:8585'
group: Tests with database postgresql