mirror of
https://github.com/fluencelabs/marine.git
synced 2025-06-18 01:11:27 +00:00
Improve arrays and record passing scheme (#76)
This commit is contained in:
Binary file not shown.
Binary file not shown.
@ -1,14 +1,20 @@
|
||||
#!/bin/sh
|
||||
|
||||
# This script builds all subprojects and puts all created Wasm modules in one dir
|
||||
cd effector
|
||||
cargo update
|
||||
fce build --release
|
||||
cd ../pure
|
||||
cargo update
|
||||
fce build --release
|
||||
(
|
||||
cd effector || exit;
|
||||
cargo update --aggressive;
|
||||
fce build --release;
|
||||
)
|
||||
|
||||
(
|
||||
cd pure || exit;
|
||||
cargo update --aggressive;
|
||||
fce build --release;
|
||||
)
|
||||
|
||||
rm artifacts/* || true
|
||||
mkdir -p artifacts
|
||||
|
||||
cd ..
|
||||
rm artifacts/*
|
||||
cp ../../target/wasm32-wasi/release/ipfs_effector.wasm artifacts/
|
||||
cp ../../target/wasm32-wasi/release/ipfs_pure.wasm artifacts/
|
||||
|
Reference in New Issue
Block a user