Commit 615a30c1 authored by mergify[bot]'s avatar mergify[bot] Committed by GitHub

Merge pull request #4905 from ethereum-optimism/jg/log_on_devnet_ci

Add logs to devnet-up test
parents e636534b 535b22ef
...@@ -668,6 +668,31 @@ jobs: ...@@ -668,6 +668,31 @@ jobs:
name: Check the status name: Check the status
command: npx hardhat check-op-node command: npx hardhat check-op-node
working_directory: packages/contracts-bedrock working_directory: packages/contracts-bedrock
- run:
name: Dump op-node logs
command: |
docker logs ops-bedrock-op-node-1 || echo "No logs."
when: on_fail
- run:
name: Dump op-geth logs
command: |
docker logs ops-bedrock-l2-1 || echo "No logs."
when: on_fail
- run:
name: Dump l1 logs
command: |
docker logs ops-bedrock-l1-1 || echo "No logs."
when: on_fail
- run:
name: Dump op-batcher logs
command: |
docker logs ops-bedrock-op-batcher-1 || echo "No logs."
when: on_fail
- run:
name: Dump op-proposer logs
command: |
docker logs ops-bedrock-op-proposer-1 || echo "No logs."
when: on_fail
integration-tests: integration-tests:
machine: machine:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment