mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 14:01:02 +00:00
14 lines
299 B
Bash
Executable File
14 lines
299 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
rm -rf ./target
|
|
for i in */
|
|
do
|
|
i=${i%/}
|
|
cd $i
|
|
|
|
RUSTFLAGS="-C link-arg=--import-memory" cargo +nightly build --target=wasm32-unknown-unknown --release --no-default-features
|
|
wasm-gc target/wasm32-unknown-unknown/release/$i.wasm ../../tests/res/$i.wasm
|
|
cd ..
|
|
done
|