fix: Fix log display for integration tests

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
This commit is contained in:
Côme Chilliet 2025-06-03 14:46:19 +02:00
parent a2fdeccc31
commit c6f2eff7f7
No known key found for this signature in database
GPG key ID: A3E2F658B28C760A

View file

@ -163,7 +163,7 @@ jobs:
- name: Print logs
if: always()
run: |
cat data/nextcloud.log
cat $(./occ log:file |grep "Log file"|cut -d" " -f3)
docker ps -a
docker ps -aq | while read container ; do IMAGE=$(docker inspect --format='{{.Config.Image}}' $container); echo $IMAGE; docker logs $container; echo "\n\n" ; done