From 6844feba41926ec1ae46d76d0f5d997bec6c7cb0 Mon Sep 17 00:00:00 2001 From: andrussal Date: Wed, 3 Dec 2025 07:55:21 +0100 Subject: [PATCH] Echo log file paths for compose/local smoke artifacts --- .github/workflows/lint.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 8cf0ea2..ec9cda5 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -382,11 +382,15 @@ jobs: mkdir -p ci-artifacts/compose if [ -d "${TMPDIR}/compose-logs" ]; then tar -czf ci-artifacts/compose/node-logs.tgz -C "${TMPDIR}/compose-logs" . + echo "Node logs tar: $(realpath ci-artifacts/compose/node-logs.tgz)" + find "${TMPDIR}/compose-logs" -type f -print fi mkdir -p ci-artifacts/compose docker ps -a --filter "name=nomos-compose-" --format '{{.ID}} {{.Names}} {{.Status}}' > ci-artifacts/compose/containers.txt || true + echo "Containers list: $(realpath ci-artifacts/compose/containers.txt)" for id in $(docker ps -a --filter "name=nomos-compose-" -q); do docker logs "$id" > "ci-artifacts/compose/${id}.log" 2>&1 || true + echo "Container log: $(realpath ci-artifacts/compose/${id}.log)" done - name: Upload compose artifacts