feat: axvm::read
(#744)
#1699
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: ECC Tests | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["**"] | |
paths: | |
- "stark-backend/**" | |
- "circuits/primitives/**" | |
- "vm/**" | |
- "toolchain/native-compiler/**" | |
- "circuits/ecc/**" | |
- "lib/ecc/**" | |
- "lib/ecc-execution/**" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} | |
cancel-in-progress: true | |
env: | |
CARGO_TERM_COLOR: always | |
AXIOM_FAST_TEST: "1" | |
jobs: | |
tests: | |
runs-on: | |
- runs-on=${{ github.run_id }} | |
- runner=32cpu-linux-arm64 | |
steps: | |
- 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 ecc-execution crate tests | |
working-directory: lib/ecc-execution | |
run: | | |
cargo nextest run --cargo-profile=fast | |
- name: Run ecc-circuits crate tests | |
working-directory: circuits/ecc | |
run: | | |
RUST_MIN_STACK=8388608 cargo nextest run --cargo-profile=fast --features parallel |