mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-28 16:47:57 +00:00
Move scripts to scripts folder and update readme (#2331)
* Move scripts to scripts folder and update readme * Update node-template/README.md Co-Authored-By: xlc <xlchen1291@gmail.com> * Update node-template/README.md Co-Authored-By: xlc <xlchen1291@gmail.com> * Update node-template/README.md Co-Authored-By: xlc <xlchen1291@gmail.com> * Update node-template/README.md Co-Authored-By: xlc <xlchen1291@gmail.com> * Update node-template/README.md Co-Authored-By: xlc <xlchen1291@gmail.com> * Update node-template/README.md Co-Authored-By: xlc <xlchen1291@gmail.com> * remove release flag
This commit is contained in:
committed by
Bastian Köcher
parent
61d38cce5c
commit
c4cbfb355c
Executable
+16
@@ -0,0 +1,16 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
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
|
||||
|
||||
# Install wasm-gc. It's useful for stripping slimming down wasm binaries.
|
||||
command -v wasm-gc || \
|
||||
cargo +nightly install --git https://github.com/alexcrichton/wasm-gc --force
|
||||
Reference in New Issue
Block a user