Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 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
13 changes: 11 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,18 @@ jobs:
run: cargo clippy --workspace --all-targets --all-features -- -D warnings

ef-tests:
name: Ethereum Foundation tests

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Run CI for both tries (or more in the future if supported).
Mechanism is basically passing a mandatory arg to ruf_ef_tests.sh which will proxy through env var for test runner.

It is mostly plumbing since stateless_validation already has support for generic trie via generics.

name: Ethereum Foundation tests (${{ matrix.trie }})
runs-on: ubuntu-latest
timeout-minutes: 30
continue-on-error: ${{ matrix.allow_failure }}
strategy:
fail-fast: false
matrix:
include:
- trie: default
allow_failure: false
- trie: zeth
allow_failure: true
env:
RUST_LOG: info,sync=error
RUST_BACKTRACE: 1
Expand All @@ -42,7 +51,7 @@ jobs:
with:
cache-on-failure: true
- name: Run EF tests
run: ./scripts/run_ef_tests.sh
run: ./scripts/run_ef_tests.sh ${{ matrix.trie }}

no-std:
name: no_std (RISC-V)
Expand Down
Loading
Loading