feat(l1): rpc endpoint debug_traceTransaction
with support for callTracer
#2199
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: L2 (without proving) | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["**"] | |
paths: | |
- "crates/l2/**" | |
- "test_data/**" | |
- "crates/blockchain/dev/**" | |
- "crates/vm/levm/**" | |
- ".github/workflows/pr-main_l2.yaml" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
env: | |
CI_ETHREX_WORKDIR: /usr/local/bin | |
jobs: | |
docker-bake: | |
name: "Docker bake" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Bake docker images | |
uses: docker/bake-action@v6 | |
with: | |
workdir: "crates/l2" | |
files: "crates/l2/docker-compose-l2.yaml" | |
set: | | |
ethrex.cache-to=type=local,dest=/tmp/buildx-cache/ethrex,mode=max | |
ethrex_l2.cache-to=type=local,dest=/tmp/buildx-cache/ethrex_l2,mode=max | |
contract_deployer.cache-to=type=local,dest=/tmp/buildx-cache/contract_deployer,mode=max | |
- name: Upload docker artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: buildx-cache | |
path: /tmp/buildx-cache | |
lint: | |
# "Lint" is a required check, don't change the name | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Rustup toolchain install | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
components: rustfmt, clippy | |
- name: Add Rust Cache | |
uses: Swatinem/rust-cache@v2 | |
- name: Run cargo check | |
run: cargo check --workspace | |
- name: Run cargo clippy | |
run: | | |
cargo clippy --workspace -- -D warnings | |
make lint | |
- name: Run cargo fmt | |
run: | | |
cargo fmt --all -- --check | |
integration-test: | |
name: Integration Test - ${{ matrix.name }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- name: "Validium" | |
validium: true | |
- name: "Vanilla" | |
validium: false | |
needs: [docker-bake] | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Rustup toolchain install | |
uses: dtolnay/rust-toolchain@stable | |
- name: Set up Rust cache | |
uses: Swatinem/rust-cache@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Download buildx cache | |
uses: actions/download-artifact@v4 | |
with: | |
name: buildx-cache | |
path: /tmp/buildx-cache | |
- name: Bake docker images | |
uses: docker/bake-action@v6 | |
with: | |
workdir: "crates/l2" | |
files: "crates/l2/docker-compose-l2.yaml" | |
load: true | |
set: | | |
ethrex.cache-from=type=local,src=/tmp/buildx-cache/ethrex | |
ethrex_l2.cache-from=type=local,src=/tmp/buildx-cache/ethrex_l2 | |
contract_deployer.cache-from=type=local,src=/tmp/buildx-cache/contract_deployer | |
# also creates empty verification keys (as workflow runs with exec backend) | |
- name: Build prover | |
run: | | |
cd crates/l2 | |
make build-prover | |
mkdir -p prover/zkvm/interface/sp1/out && touch prover/zkvm/interface/sp1/out/riscv32im-succinct-zkvm-vk | |
- name: Build test | |
run: | | |
cargo test l2 --no-run --release | |
- name: Start L1 & Deploy contracts | |
run: | | |
cd crates/l2 | |
touch .env | |
CI_ETHREX_WORKDIR=/usr/local/bin \ | |
ETHREX_DEPLOYER_DEPLOY_RICH=true \ | |
ETHREX_DEPLOYER_PICO_CONTRACT_ADDRESS=0x00000000000000000000000000000000000000aa \ | |
ETHREX_DEPLOYER_SP1_CONTRACT_ADDRESS=0x00000000000000000000000000000000000000aa \ | |
ETHREX_DEPLOYER_RISC0_CONTRACT_ADDRESS=0x00000000000000000000000000000000000000aa \ | |
docker compose -f docker-compose-l2.yaml up contract_deployer | |
- name: Start Sequencer | |
run: | | |
cd crates/l2 | |
CI_ETHREX_WORKDIR=/usr/local/bin \ | |
ETHREX_COMMITTER_VALIDIUM=${{ matrix.validium }} \ | |
ETHREX_WATCHER_BLOCK_DELAY=0 \ | |
docker compose -f docker-compose-l2.yaml up --detach ethrex_l2 | |
- name: Run test | |
run: | | |
cd crates/l2 | |
RUST_LOG=info,ethrex_prover_lib=debug make init-prover & | |
PROPOSER_COINBASE_ADDRESS=0x0007a881CD95B1484fca47615B64803dad620C8d cargo test l2 --release -- --nocapture --test-threads=1 | |
killall ethrex_prover -s SIGINT | |
state-diff-test: | |
name: State Reconstruction Tests | |
runs-on: ubuntu-latest | |
needs: [docker-bake] | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Rustup toolchain install | |
uses: dtolnay/rust-toolchain@stable | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Download buildx cache | |
uses: actions/download-artifact@v4 | |
with: | |
name: buildx-cache | |
path: /tmp/buildx-cache | |
- name: Bake docker images | |
uses: docker/bake-action@v6 | |
with: | |
workdir: "crates/l2" | |
files: "crates/l2/docker-compose-l2.yaml" | |
load: true | |
set: | | |
ethrex.cache-from=type=local,src=/tmp/buildx-cache/ethrex | |
ethrex_l2.cache-from=type=local,src=/tmp/buildx-cache/ethrex_l2 | |
contract_deployer.cache-from=type=local,src=/tmp/buildx-cache/contract_deployer | |
- name: Set up Rust cache | |
uses: Swatinem/rust-cache@v2 | |
- name: Install solc | |
run: | | |
sudo add-apt-repository ppa:ethereum/ethereum | |
sudo apt-get update && sudo apt-get -y install solc | |
- name: Start L1 & Deploy contracts | |
run: | | |
cd crates/l2 | |
touch .env | |
CI_ETHREX_WORKDIR=/usr/local/bin docker compose -f docker-compose-l2.yaml up contract_deployer | |
- name: Run tests | |
run: | | |
cd crates/l2 | |
make state-diff-test | |
# The purpose of this job is to add it as a required check in GitHub so that we don't have to add every individual job as a required check | |
all-tests: | |
# "Integration Test" is a required check, don't change the name | |
name: Integration Test | |
runs-on: ubuntu-latest | |
needs: [integration-test, state-diff-test] | |
# Make sure this job runs even if the previous jobs failed or were skipped | |
if: ${{ always() && needs.integration-test.result != 'skipped' && needs.state-diff-test.result != 'skipped' }} | |
steps: | |
- name: Check if any job failed | |
run: | | |
if [ "${{ needs.integration-test.result }}" != "success" ]; then | |
echo "Job Integration Tests failed" | |
exit 1 | |
fi | |
if [ "${{ needs.state-diff-test.result }}" != "success" ]; then | |
echo "Job State Reconstruction Tests failed" | |
exit 1 | |
fi |