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
No known key found for this signature in database
GPG Key ID: A3E2F658B28C760A
1 changed files with
1 additions and
1 deletions
-
.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 |
|
|
|
|
|
|
|
|