Add Op L1 block info txn in op CL tester #1007
Workflow file for this run
This file contains 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: Benchmarks | |
on: | |
pull_request: | |
push: | |
branches: [develop] | |
jobs: | |
bench: | |
name: Benchmark the code | |
runs-on: warp-ubuntu-latest-x64-32x | |
strategy: | |
matrix: | |
toolchain: | |
- stable | |
env: | |
PR_NUMBER: ${{ github.event.number }} | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Used to get hash of base branch | |
# 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 | |
- name: Set (and display) useful variables | |
id: vars | |
run: | | |
source scripts/ci/env-vars.sh | |
# Keep important variables around for the upload workflow that comes afterwards | |
fn_vars="vars.txt" | |
echo "PR_NUMBER=${PR_NUMBER}" >> $fn_vars | |
echo "HEAD_SHA=${HEAD_SHA}" >> $fn_vars | |
echo "HEAD_SHA_SHORT=${HEAD_SHA_SHORT}" >> $fn_vars | |
echo "BASE_SHA=${BASE_SHA}" >> $fn_vars | |
echo "BASE_SHA_SHORT=${BASE_SHA_SHORT}" >> $fn_vars | |
cat $fn_vars | |
- name: Install Foundry toolchain | |
uses: foundry-rs/foundry-toolchain@v1 | |
with: | |
version: nightly | |
# RUN BENCHMARKS | |
- run: make bench-in-ci | |
- name: Zip the report | |
run: | | |
cp vars.txt target/benchmark-in-ci/benchmark-report/ | |
cd target/benchmark-in-ci | |
zip -r benchmark-report.zip benchmark-report | |
mv benchmark-report.zip ../../ | |
- name: Upload report as artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: benchmark-report.zip | |
path: benchmark-report.zip | |
- name: Add details to CI job summary | |
run: | | |
cat target/benchmark-in-ci/benchmark-report/benchmark-summary.md >> $GITHUB_STEP_SUMMARY |