mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-07 18:57:23 +00:00
14675edcbc
* Fix build of test-chains. * Add test-chains into build and publish scripts
14 lines
468 B
Bash
Executable File
14 lines
468 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# NOTE `cargo install wasm-gc` before running this script.
|
|
# NOTE `cargo install --git https://github.com/pepyakin/wasm-export-table.git`
|
|
|
|
set -e
|
|
export CARGO_INCREMENTAL=0
|
|
|
|
cd demo/runtime/wasm && ./build.sh && cd ../../..
|
|
cd substrate/executor/wasm && ./build.sh && cd ../../..
|
|
cd substrate/test-runtime/wasm && ./build.sh && cd ../../..
|
|
cd polkadot/runtime/wasm && ./build.sh && cd ../../..
|
|
cd polkadot/parachain/test-chains && ./build.sh && cd ../../..
|