Browse Source

fix: Fix log display for integration tests

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
pull/52793/head
Côme Chilliet 8 months ago
parent
commit
c6f2eff7f7
No known key found for this signature in database GPG Key ID: A3E2F658B28C760A
  1. 2
      .github/workflows/integration-sqlite.yml

2
.github/workflows/integration-sqlite.yml

@ -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

Loading…
Cancel
Save