Updated mod-builder to support better setup and finalization #3991
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: VM STARK and Compiler Tests | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["**"] | |
paths: | |
- "crates/circuits/**" | |
- "crates/vm/**" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} | |
cancel-in-progress: true | |
env: | |
CARGO_TERM_COLOR: always | |
OPENVM_FAST_TEST: "1" | |
jobs: | |
tests: | |
runs-on: | |
- runs-on=${{ github.run_id }} | |
- runner=64cpu-linux-arm64 | |
- extras=s3-cache | |
steps: | |
- uses: runs-on/action@v1 | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
cache-on-failure: true | |
- uses: taiki-e/install-action@nextest | |
- name: Run vm crate tests | |
working-directory: crates/vm | |
run: | | |
cargo nextest run --cargo-profile=fast --features parallel |