feat(l1, l2, levm): print loc diff in loc report message (#1342) #5
This file contains 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 Prover | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["**"] | |
paths: | |
- "crates/l2/prover/**" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
# "Lint" is a required check, don't change the name | |
name: Lint | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
action: | |
- command: check | |
args: -p ethrex-prover | |
- command: clippy | |
args: -p ethrex-prover --all-targets --no-default-features | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Add Rust Cache | |
uses: Swatinem/rust-cache@v2 | |
- name: ${{ matrix.action.command }} Command | |
run: cargo ${{ matrix.action.command }} ${{ matrix.action.args }} | |
test: | |
# "Test" is a required check, don't change the name | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Rust toolchain install | |
uses: dtolnay/rust-toolchain@stable | |
- name: RISC-V zkVM toolchain install | |
run: | | |
curl -L https://risczero.com/install | bash | |
~/.risc0/bin/rzup install | |
# - name: Caching | |
# uses: Swatinem/rust-cache@v2 | |
- name: Build prover and zkVM | |
run: | | |
cd crates/l2/prover | |
cargo build --release --features build_zkvm | |
- name: Test Prover Execution | |
run: | | |
cd crates/l2/prover | |
RUST_LOG=info make perf_test_proving |