-
Notifications
You must be signed in to change notification settings - Fork 32
42 lines (36 loc) · 989 Bytes
/
recursion.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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-64core-256ram
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- name: get solc
uses: pontem-network/get-solc@master
with:
version: v0.8.19
- name: Run recursion crate tests
working-directory: recursion
run: |
cargo test --profile=fast --features parallel
cargo test --profile=fast --features parallel,static-verifier -- halo2::tests