mirror of
https://github.com/codex-storage/codex-storage-proofs.git
synced 2025-01-19 15:22:57 +00:00
4483440c27
adding initial CI build for circuits
12 lines
235 B
Bash
Executable File
12 lines
235 B
Bash
Executable File
#!/bin/bash
|
|
|
|
circom_version=v2.1.4
|
|
|
|
if ! [ -x "$(command -v circom)" ]; then
|
|
git clone https://github.com/iden3/circom.git
|
|
cd circom
|
|
git checkout $circom_version
|
|
cargo build --release
|
|
cargo install --path circom
|
|
fi
|