Add Github Action cache to improve CI time #1180
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: CI | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, labeled] | |
push: | |
branches: | |
- main | |
jobs: | |
check-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Rust cache and install tooling | |
uses: ./.github/actions/rust-setup | |
- run: cargo fmt --all --check | |
- run: cargo check -p example --target=riscv32i-unknown-none-elf | |
- run: cargo check --bins --examples --tests --benches --all-features | |
- run: cd nova-benches && cargo check --benches | |
cargo-test: | |
needs: check-build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Rust cache and install tooling | |
uses: ./.github/actions/rust-setup | |
- run: cargo test -r --bins --examples --all-features | |
test-smoke: | |
needs: check-build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Rust cache and install tooling | |
uses: ./.github/actions/rust-setup | |
- run: assets/scripts/smoke.sh examples/src/bin/fib3_profiling.rs | |
test-sdk: | |
needs: check-build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Rust cache and install tooling | |
uses: ./.github/actions/rust-setup | |
- run: assets/scripts/test_sdk.sh examples/src/bin/fib3_profiling.rs | |
detect-unused-crate: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: bnjbvr/cargo-machete@main | |
bench-riscv: | |
needs: check-build | |
runs-on: ubuntu-latest | |
if: contains(github.event.pull_request.labels.*.name, 'benchmark') | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install valgrind | |
run: sudo apt-get install -y valgrind | |
- name: Install iai-callgrind-runner | |
run: | | |
version=$(cargo metadata --format-version=1 |\ | |
jq '.packages[] | select(.name == "iai-callgrind").version' |\ | |
tr -d '"' | |
) | |
cargo install iai-callgrind-runner --version $version | |
- name: Run benchmarks | |
run: | | |
cargo bench --bench riscv_machine | |
bench-nova-public-params: | |
needs: check-build | |
runs-on: ubuntu-latest | |
if: contains(github.event.pull_request.labels.*.name, 'benchmark') | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run benchmarks | |
run: | | |
cd nova-benches/ | |
cargo bench --bench nova_public_parameter_generation | |