We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1509212 commit 6397780Copy full SHA for 6397780
1 file changed
PolyLingua/tests/test_compose_on_gaudi.sh
@@ -90,7 +90,17 @@ EOF
90
91
# Start Docker Containers
92
echo "Starting services with docker compose..."
93
- docker compose -f compose.yaml up -d > ${LOG_PATH}/start_services_with_compose.log 2>&1
+ if ! docker compose -f compose.yaml up -d > ${LOG_PATH}/start_services_with_compose.log 2>&1; then
94
+ echo "::error::Docker Compose failed to start. Printing logs..."
95
+ cat "${LOG_PATH}/start_services_with_compose.log"
96
+ echo "::group::Docker Compose PS"
97
+ docker compose -f compose.yaml ps
98
+ echo "::endgroup::"
99
+ echo "::group::Docker Logs"
100
+ docker compose -f compose.yaml logs
101
102
+ exit 1
103
+ fi
104
105
# Wait for vLLM service to be ready
106
echo "Waiting for vLLM service to initialize (this may take several minutes)..."
0 commit comments