Feat/7683/log analysis script to include fill time #1243
Workflow file for this run
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
| name: "Reth" | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| - ready_for_review | |
| push: | |
| branches: | |
| - "canary" | |
| # prevent redundant builds | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build: | |
| name: build + test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out the repo | |
| uses: actions/checkout@v4 | |
| - name: Setup rust | |
| uses: dtolnay/rust-toolchain@stable | |
| - name: Rust cache | |
| uses: swatinem/rust-cache@v2 | |
| with: | |
| workspaces: "reth -> target" | |
| - name: Build | |
| working-directory: reth | |
| run: cargo build | |
| - name: Test | |
| working-directory: reth | |
| run: cargo test | |
| - name: Add build summary | |
| if: always() | |
| run: | | |
| echo "## Reth build status" >> $GITHUB_STEP_SUMMARY | |
| echo "- commit: ${{ github.sha }}" >> $GITHUB_STEP_SUMMARY | |
| echo "- status: ${{ job.status }}" >> $GITHUB_STEP_SUMMARY |