fix: displaying logs on docker failure
This commit is contained in:
parent
573ffbfcf3
commit
b53b67328f
1 changed files with 5 additions and 1 deletions
6
.github/workflows/common-e2e.yml
vendored
6
.github/workflows/common-e2e.yml
vendored
|
@ -54,7 +54,11 @@ jobs:
|
||||||
|
|
||||||
- name: Show logs on failure
|
- name: Show logs on failure
|
||||||
if: ${{ failure() }}
|
if: ${{ failure() }}
|
||||||
run: docker compose -f docker-compose.ci.yml logs -n 500
|
run: |
|
||||||
|
echo "# Errors:"
|
||||||
|
tail -n 100 logs/*.err
|
||||||
|
echo "# Logs:"
|
||||||
|
tail -n 100 logs/*.log
|
||||||
|
|
||||||
e2e-home-server:
|
e2e-home-server:
|
||||||
name: (Home Server) E2E Test Suite
|
name: (Home Server) E2E Test Suite
|
||||||
|
|
Loading…
Reference in a new issue