aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2025-06-03 14:46:19 +0200
committerCôme Chilliet <come.chilliet@nextcloud.com>2025-06-05 17:58:54 +0200
commitc6f2eff7f7eedc2aed7536e05cd8dbfab16f3a82 (patch)
tree8edcc3338dcd990bb38089a217572a7473a7978b
parenta2fdeccc3126b31a48ec88d8546ebade3ad0277e (diff)
downloadnextcloud-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.yml2
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