mirror of
https://github.com/fluencelabs/marine.git
synced 2025-06-25 20:51:35 +00:00
19 lines
492 B
Bash
19 lines
492 B
Bash
![]() |
#!/bin/sh
|
||
|
|
||
|
# This script builds all subprojects and puts all created Wasm modules in one dir
|
||
|
cd wasm/site-storage
|
||
|
cargo update
|
||
|
fce build --release
|
||
|
cd ../curl
|
||
|
cargo update
|
||
|
fce build --release
|
||
|
cd ../local_storage
|
||
|
cargo update
|
||
|
fce build --release
|
||
|
|
||
|
cd ..
|
||
|
rm artifacts/modules/*
|
||
|
cp ../../../target/wasm32-wasi/release/curl.wasm artifacts/modules
|
||
|
cp ../../../target/wasm32-wasi/release/local_storage.wasm artifacts/modules
|
||
|
cp ../../../target/wasm32-wasi/release/site-storage.wasm artifacts/modules
|