Skip to content

Commit

Permalink
Fix .github/workflows/container-healthchecks
Browse files Browse the repository at this point in the history
- Added explicit execution of `COMPOSE_PROFILES="platform,svc" ./gradlew :dockerComposeUp` to ensure necessary platform and svc services are started.

Relevant error:
vro_ee-ep-merge-app_1 Up About a minute (unhealthy) There are unexpected unhealthy containers! Error: Process completed with exit code 2.

See PR comment: #3814 (comment)
  • Loading branch information
gabezurita committed Dec 3, 2024
1 parent 18d0985 commit 64c2f4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/container-healthchecks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
run: |
source scripts/setenv.sh
export -p | sed 's/declare -x //'
COMPOSE_PROFILES="platform" ./gradlew :dockerComposeUp
COMPOSE_PROFILES="platform,svc" ./gradlew :dockerComposeUp
# NOTE: svc-bie-kafka workflows are tied to inactive services and commented out to prevent unnecessary execution and updates.
# Documentation:
Expand Down

0 comments on commit 64c2f4d

Please sign in to comment.