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