feat: Implementation of LoadStore runtime #1415
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: STARK Recursion Tests | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
paths: | |
- "stark-backend/**" | |
- "primitives/**" | |
- "vm/**" | |
- "compiler/**" | |
- "recursion/**" | |
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: ubuntu-latest-16core-64ram # must use x86 because solc has no arm64 linux binary... | |
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: get solc | |
uses: pontem-network/get-solc@master | |
with: | |
version: v0.8.19 | |
- name: Run recursion crate tests | |
working-directory: recursion | |
run: | | |
cargo nextest run --cargo-profile=fast --features parallel | |
cargo nextest run --cargo-profile=fast --features parallel,static-verifier -- halo2::tests |