Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,25 @@ jobs:
- name: ZKEVM opcode
run: cargo nextest run --release --manifest-path crates/zkevm_opcode_defs/Cargo.toml

test-zkevm-abstractions-airbender:
name: zk_evm_abstractions airbender delegations
if: ${{ !contains(github.head_ref, 'release-please--branches') }}
runs-on: matterlabs-ci-runner-high-performance
needs: build
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions-rust-lang/setup-rust-toolchain@1780873c7b576612439a134613cc4cc74ce5538c # v1.15.2
with:
rustflags: ""
- name: Setup rust
run: |
rustup set profile minimal
rustup toolchain install nightly-2024-11-19
rustup default nightly-2024-11-19
cargo install cargo-nextest@0.9.108 --locked
- name: ZKEVM abstractions airbender delegation tests
run: cargo nextest run --release --manifest-path crates/zk_evm_abstractions/Cargo.toml --features airbender-precompile-delegations

formatting:
name: cargo fmt
runs-on: ubuntu-latest
Expand All @@ -91,6 +110,7 @@ jobs:
[
build,
test,
test-zkevm-abstractions-airbender,
formatting,
]
steps:
Expand Down
Loading
Loading