mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-01-02 13:23:10 +00:00
19 lines
536 B
Bash
Executable File
19 lines
536 B
Bash
Executable File
set -e
|
|
|
|
curl -L https://risczero.com/install | bash
|
|
/home/runner/.risc0/bin/rzup install
|
|
|
|
RISC0_DEV_MODE=1 cargo test --release
|
|
|
|
cd integration_tests
|
|
export NSSA_WALLET_HOME_DIR=$(pwd)/configs/debug/wallet/
|
|
export RUST_LOG=info
|
|
cargo run $(pwd)/configs/debug all
|
|
echo "Try test valid proof at least once"
|
|
cargo run $(pwd)/configs/debug test_success_private_transfer_to_another_owned_account
|
|
echo "Continuing in dev mode"
|
|
RISC0_DEV_MODE=1 cargo run $(pwd)/configs/debug all
|
|
cd ..
|
|
|
|
cd nssa/program_methods/guest && cargo test --release
|