Fix Github Actions, Timeout (#13488)

This commit is contained in:
Ayush Shah 2023-10-09 15:01:23 +05:30 committed by GitHub
parent d31db4e862
commit 1a8b11b29e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 5 deletions

View File

@ -102,7 +102,7 @@ jobs:
env: env:
INGESTION_DEPENDENCY: "mysql,elasticsearch" INGESTION_DEPENDENCY: "mysql,elasticsearch"
with: with:
timeout_minutes: 30 timeout_minutes: 60
max_attempts: 2 max_attempts: 2
retry_on: error retry_on: error
command: ./docker/run_local_docker.sh -m no-ui command: ./docker/run_local_docker.sh -m no-ui

View File

@ -73,7 +73,7 @@ jobs:
env: env:
INGESTION_DEPENDENCY: "mysql,elasticsearch" INGESTION_DEPENDENCY: "mysql,elasticsearch"
with: with:
timeout_minutes: 30 timeout_minutes: 60
max_attempts: 2 max_attempts: 2
retry_on: error retry_on: error
command: ./docker/run_local_docker.sh -m no-ui command: ./docker/run_local_docker.sh -m no-ui

View File

@ -95,7 +95,7 @@ jobs:
env: env:
INGESTION_DEPENDENCY: "mysql,elasticsearch" INGESTION_DEPENDENCY: "mysql,elasticsearch"
with: with:
timeout_minutes: 40 timeout_minutes: 60
max_attempts: 2 max_attempts: 2
retry_on: error retry_on: error
command: ./docker/run_local_docker.sh -m no-ui command: ./docker/run_local_docker.sh -m no-ui

View File

@ -56,10 +56,10 @@ docker compose -f docker/development/docker-compose.yml down
if [[ $skipMaven == "false" ]]; then if [[ $skipMaven == "false" ]]; then
if [[ $mode == "no-ui" ]]; then if [[ $mode == "no-ui" ]]; then
echo "Maven Build - Skipping Tests and UI" echo "Maven Build - Skipping Tests and UI"
mvn -DskipTests -DonlyBackend clean package -pl !openmetadata-ui mvn -q -DskipTests -DonlyBackend clean package -pl !openmetadata-ui
else else
echo "Maven Build - Skipping Tests" echo "Maven Build - Skipping Tests"
mvn -DskipTests clean package mvn -q -DskipTests clean package
fi fi
else else
echo "Skipping Maven Build" echo "Skipping Maven Build"