mirror of
https://github.com/logos-storage/proof-aggregation.git
synced 2026-01-07 08:13:07 +00:00
add verify script.
This commit is contained in:
parent
17c8cfe746
commit
950cd6bd0d
13
workflow/scripts/verify.sh
Executable file
13
workflow/scripts/verify.sh
Executable file
@ -0,0 +1,13 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Source the parameters from params.sh
|
||||||
|
source ./circ_params.sh
|
||||||
|
|
||||||
|
# Change to the parent directory of the script
|
||||||
|
cd "$(dirname "$0")/.." || { echo "Failed to change directory"; exit 1; }
|
||||||
|
|
||||||
|
# Build
|
||||||
|
cargo build --release || { echo "prove.sh: cargo build failed"; exit 101; }
|
||||||
|
|
||||||
|
# Run the Rust executable
|
||||||
|
cargo run --bin verify --features "parallel" || { echo "prove.sh: cargo run failed"; exit 102; }
|
||||||
Loading…
x
Reference in New Issue
Block a user