mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 15:47:58 +00:00
30 lines
578 B
Bash
Executable File
30 lines
578 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eux
|
|
|
|
# Install rustup and the specified rust toolchain.
|
|
curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain=$RUST_TOOLCHAIN -y
|
|
|
|
# Load cargo environment. Specifically, put cargo into PATH.
|
|
source ~/.cargo/env
|
|
|
|
rustc --version
|
|
rustup --version
|
|
cargo --version
|
|
|
|
case $TARGET in
|
|
"native")
|
|
sudo apt-get -y update
|
|
sudo apt-get install -y cmake pkg-config libssl-dev
|
|
|
|
cargo test --all --locked
|
|
;;
|
|
|
|
"wasm")
|
|
# Install prerequisites and build all wasm projects
|
|
./scripts/init.sh
|
|
./scripts/build.sh
|
|
./scripts/build-demos.sh
|
|
;;
|
|
esac
|