fix(rocksdb): flush batch data into storage to make sure stage is com… #797
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
| # Runs e2e tests using the testsuite framework | ||
|
Check failure on line 1 in .github/workflows/e2e.yml
|
||
| 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)' | ||