Skip to content

fix(rocksdb): flush batch data into storage to make sure stage is com… #797

fix(rocksdb): flush batch data into storage to make sure stage is com…

fix(rocksdb): flush batch data into storage to make sure stage is com… #797

Workflow file for this run

# Runs e2e tests using the testsuite framework

Check failure on line 1 in .github/workflows/e2e.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/e2e.yml

Invalid workflow file

(Line: 38, Col: 15): Expected format {org}/{repo}[/path]@ref. Actual 'actions/checkout'
name: e2e
on:
pull_request:
merge_group:
push:
branches: [main]
env:
CARGO_TERM_COLOR: always
SEED: rustethereumethereumrust
CARGO_INCREMENTAL: 0
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
test:
name: e2e-testsuite
runs-on: ubuntu-latest
env:
RUST_BACKTRACE: 1
timeout-minutes: 90
steps:
- name: Free Disk Space
uses: jlumbroso/free-disk-space@main
with:
tool-cache: false
android: true
dotnet: true
haskell: true
large-packages: false
docker-images: true
swap-storage: true
- uses: actions/checkout
- uses: dtolnay/rust-toolchain@stable
- uses: taiki-e/install-action@nextest
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- name: Run e2e tests
run: |
cargo nextest run \
--locked --features "asm-keccak" \
--workspace \
--exclude 'example-*' \
--exclude 'exex-subscription' \
--exclude 'reth-bench' \
--exclude 'ef-tests' \
--exclude "op-reth" \
--exclude "reth-op" \
--exclude "reth-optimism-*" \
--exclude 'reth' \
--exclude 'reth-pipe-exec-layer-*' \
-E 'binary(e2e_testsuite)'