&& #53
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: | |
push: | |
branches: ["main"] | |
paths-ignore: | |
- "README.md" | |
pull_request: | |
branches: ["main"] | |
paths-ignore: | |
- "README.md" | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
benchmark-tests: | |
runs-on: | |
large-self-hosted | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: software-mansion/setup-scarb@v1 | |
with: | |
scarb-version: "2.4.0" | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.9" | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
override: true | |
components: rustfmt, clippy | |
- uses: baptiste0928/cargo-install@v1 | |
with: | |
crate: cargo-nextest | |
locked: true | |
- name: Install Risc0 toolchain | |
run: | | |
cargo install cargo-binstall | |
yes | cargo binstall cargo-risczero | |
cargo risczero install | |
- name: Install Rust jupyter kernel | |
run: | | |
cargo install evcxr_jupyter | |
evcxr_jupyter --install | |
- name: Setup Virtual Env | |
run: python -m venv .env; source .env/bin/activate; | |
- name: Run all benchmarks across all models | |
run: source .env/bin/activate && cargo nextest run benchmarking_tests::tests::run_benchmarks_ --no-capture |