Skip to content
This repository was archived by the owner on Jun 5, 2025. It is now read-only.

Commit 3ececb3

Browse files
authored
Do not fail the workflow if printing the container logs fails (#916)
1 parent b02981d commit 3ececb3

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/integration-tests.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -274,8 +274,9 @@ jobs:
274274
run: |
275275
poetry run python tests/integration/integration_tests.py
276276
277-
- name: Print the CodeGate container logs
277+
- name: Logs - CodeGate container
278278
if: always()
279+
continue-on-error: true
279280
run: |
280281
docker logs $CODEGATE_CONTAINER_NAME
281282
echo "Models contents:"
@@ -288,16 +289,19 @@ jobs:
288289
ls -la codegate_volume/db
289290
docker exec $CODEGATE_CONTAINER_NAME ls -la /app/codegate_volume/db
290291
291-
- name: Print the vllm container logs (vllm-only)
292+
- name: Logs - vllm container (vllm-only)
292293
if: always()
294+
continue-on-error: true
293295
run: |
294296
if ${{ matrix.test-provider == 'vllm' }}; then
295297
docker logs vllm
296298
else
297299
echo "Skipping vllm logs, as this is not a VLLM test"
298300
fi
299-
- name: Print the Ollama container logs (ollama-only)
301+
302+
- name: Logs - Ollama container (ollama-only)
300303
if: always()
304+
continue-on-error: true
301305
run: |
302306
if ${{ matrix.test-provider == 'ollama' }}; then
303307
docker logs ollama

0 commit comments

Comments
 (0)