Co-authored-by: Daniel Gushchyan <d.gushchyan@gmail.com> Co-authored-by: hu55a1n1 <sufialhussaini@gmail.com> Co-authored-by: David Kajpust <kajpustd@gmail.com> Co-authored-by: Daniel Gushchyan <39884512+dangush@users.noreply.github.com>
19 lines
412 B
Bash
19 lines
412 B
Bash
#!/bin/bash
|
|
|
|
set -eo pipefail
|
|
|
|
ROOT=${ROOT:-$HOME}
|
|
|
|
echo "--------------------------------------------------------"
|
|
echo "building enclave binary"
|
|
|
|
cd $ROOT/cycles-quartz/apps/transfers/enclave
|
|
CARGO_TARGET_DIR=./target cargo build --release
|
|
|
|
echo "--------------------------------------------------------"
|
|
echo "building cosmwasm contract binary"
|
|
|
|
|
|
cd $ROOT/cycles-quartz/apps/transfers/contracts
|
|
bash build.sh
|