mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 12:17:58 +00:00
fb73a4eef6
Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com> Co-authored-by: Alexander Popiak <alexander.popiak@parity.io>
13 lines
285 B
Bash
Executable File
13 lines
285 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# This script is meant to be run on Unix/Linux based systems
|
|
set -e
|
|
|
|
echo "*** Initializing WASM build environment"
|
|
|
|
if [ -z $CI_PROJECT_NAME ] ; then
|
|
rustup update nightly
|
|
rustup update stable
|
|
fi
|
|
|
|
rustup target add wasm32-unknown-unknown --toolchain nightly
|