scarb features #83
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: Continuous Integration - proof verification tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
verify-proof: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
layout: ["dex", "recursive", "recursive_with_poseidon", "small", "starknet", "starknet_with_keccak"] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup Scarb | |
uses: software-mansion/setup-scarb@v1 | |
- name: Setup Rust toolchain | |
uses: actions-rust-lang/setup-rust-toolchain@v1 | |
# temporary solution | |
- name: Clone custom scarb | |
run: | | |
git clone https://github.com/software-mansion/scarb.git | |
cd scarb | |
git checkout 9fe97c8eb8620a1e2103e7f5251c5a9189e75716 | |
working-directory: ${{ github.workspace }} | |
# temporary solution | |
- name: Build custom scarb | |
run: cargo build | |
working-directory: ${{ github.workspace }}/scarb | |
- name: Build project | |
run: ./scarb/target/debug/scarb build --no-default-features --features=${{ matrix.layout }},keccak | |
working-directory: ${{ github.workspace }} | |
- name: Test project | |
run: ./scarb/target/debug/scarb test --no-default-features --features=${{ matrix.layout }},keccak | |
working-directory: ${{ github.workspace }} | |
- name: Run verification | |
run: cargo run --bin runner -- target/dev/cairo_verifier.sierra.json < examples/proofs/${{ matrix.layout }}/example_proof.json | |
working-directory: ${{ github.workspace }} |