diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2025-06-03 14:46:19 +0200 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2025-06-05 17:58:54 +0200 |
commit | c6f2eff7f7eedc2aed7536e05cd8dbfab16f3a82 (patch) | |
tree | 8edcc3338dcd990bb38089a217572a7473a7978b | |
parent | a2fdeccc3126b31a48ec88d8546ebade3ad0277e (diff) | |
download | nextcloud-server-c6f2eff7f7eedc2aed7536e05cd8dbfab16f3a82.tar.gz nextcloud-server-c6f2eff7f7eedc2aed7536e05cd8dbfab16f3a82.zip |
fix: Fix log display for integration tests
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
-rw-r--r-- | .github/workflows/integration-sqlite.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/integration-sqlite.yml b/.github/workflows/integration-sqlite.yml index b067ff75674..e578ee2b6e3 100644 --- a/.github/workflows/integration-sqlite.yml +++ b/.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 |