From c2690236e970a7582a0288449611b22582c2ff96 Mon Sep 17 00:00:00 2001 From: Petar Radovic Date: Wed, 8 Apr 2026 19:12:04 +0200 Subject: [PATCH] dump logs --- .github/workflows/ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bbfa53b5..6b9b6ddd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -188,6 +188,14 @@ jobs: RUST_LOG: "info" run: cargo nextest run -p integration_tests indexer -- --skip tps_test + - name: Dump bedrock container logs on failure + if: failure() + run: | + for c in $(docker ps -aq); do + echo "=== $(docker inspect -f '{{.Name}}' $c) ===" + docker logs $c 2>&1 | tail -300 + done + valid-proof-test: runs-on: ubuntu-latest timeout-minutes: 60