Skip to content

chore(ci): unify integration tests #969

chore(ci): unify integration tests

chore(ci): unify integration tests #969

Workflow file for this run

name: Checks
on:
workflow_dispatch:
pull_request:
merge_group:
push:
branches: [develop]
env:
CARGO_TERM_COLOR: always
jobs:
lint_and_test:
name: Lint and test
runs-on: warp-ubuntu-latest-x64-32x
env:
# Set features for the Makefile
FEATURES: ${{ matrix.features }}
strategy:
matrix:
toolchain:
- stable
features:
- ""
steps:
- name: Checkout sources
uses: actions/checkout@v4
# https://github.com/dtolnay/rust-toolchain
- name: Setup rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.toolchain }}
# https://github.com/swatinem/rust-cache
- name: Run Swatinem/rust-cache@v2
uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
# https://github.com/Mozilla-Actions/sccache-action
- name: Run sccache-action
uses: mozilla-actions/[email protected]
- name: Set sccache env vars
run: |
echo "SCCACHE_GHA_ENABLED=true" >> $GITHUB_ENV
echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV
- name: Install Foundry toolchain
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Install native dependencies
run: sudo apt-get update && sudo apt-get install -y libsqlite3-dev
- name: Lint
run: make lint
- name: Test
run: make test
- name: Validate config files
run: make validate-config
integration:
strategy:
matrix:
toolchain: [stable]
include:
- package: rbuilder
features: ""
scope: integration
playground: "TRUE"
- package: op-rbuilder
features: "optimism integration"
scope: integration::integration_test::tests
playground: ""
name: Integration tests / ${{ matrix.package }}
runs-on: warp-ubuntu-latest-x64-32x
steps:
- name: Checkout sources
uses: actions/checkout@v4
# https://github.com/dtolnay/rust-toolchain
- name: Setup rust toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
# https://github.com/swatinem/rust-cache
- name: Run Swatinem/rust-cache@v2
uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
# https://github.com/Mozilla-Actions/sccache-action
- name: Run sccache-action
uses: mozilla-actions/[email protected]
- name: Set sccache env vars
run: |
echo "SCCACHE_GHA_ENABLED=true" >> $GITHUB_ENV
echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV
- name: Build ${{ matrix.package }}
run: cargo build -p ${{ matrix.package }} --features "${{ matrix.features }}"
- name: Download builder playground
uses: flashbots/[email protected]
with:
builder-playground: latest
if: ${{ matrix.playground }}
- name: Run the playground
run: builder-playground &
if: ${{ matrix.playground }}
- name: Generate test genesis file
run: cargo run -p op-rbuilder --bin tester --features optimism -- genesis --output genesis.json
if: ${{ matrix.package == 'op-rbuilder' }}
- name: Run integration tests
run: cargo test --lib -p ${{ matrix.package }} --features "${{ matrix.features }}" -- ${{ matrix.scope }}
env:
PLAYGROUND: ${{ matrix.playground }}
- name: Aggregate playground logs
# This steps fails if the test fails early and the playground logs dir has not been created
if: ${{ failure() && matrix.playground }}
run: |
mkdir /tmp/playground-logs
mv $HOME/.playground/devnet/logs /tmp/playground-logs
mv integration_logs /tmp/playground-logs
- name: Archive playground logs
uses: actions/upload-artifact@v4
if: ${{ failure() && matrix.playground }}
with:
name: playground-logs
path: /tmp/playground-logs
retention-days: 5