From a6d85f2c6b667c3985e4c05d3a37f0db79fe8385 Mon Sep 17 00:00:00 2001 From: Bartosz Nowak Date: Wed, 27 Mar 2024 22:25:08 +0100 Subject: [PATCH] debug mode --- .github/workflows/proof_verification_tests.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/proof_verification_tests.yml b/.github/workflows/proof_verification_tests.yml index 2b2b7ebf1..b46adad43 100644 --- a/.github/workflows/proof_verification_tests.yml +++ b/.github/workflows/proof_verification_tests.yml @@ -40,14 +40,14 @@ jobs: repository: fmkra/scarb - name: Build custom scarb - run: cargo build --release + run: cargo build working-directory: scarb - name: Build project - run: ./scarb/target/release/scarb build --no-default-features --features=${{ matrix.layout }},keccak + run: ./scarb/target/debug/scarb build --no-default-features --features=${{ matrix.layout }},keccak - name: Test project - run: ./scarb/target/release/scarb test --no-default-features --features=${{ matrix.layout }},keccak + run: ./scarb/target/debug/scarb test --no-default-features --features=${{ matrix.layout }},keccak - name: Run verification - run: cargo run --release --bin runner -- target/dev/cairo_verifier.sierra.json < examples/proofs/${{ matrix.layout }}/example_proof.json + run: cargo run --bin runner -- target/dev/cairo_verifier.sierra.json < examples/proofs/${{ matrix.layout }}/example_proof.json