mirror of
https://github.com/fluencelabs/marine.git
synced 2024-12-12 14:55:32 +00:00
15 lines
332 B
Bash
Executable File
15 lines
332 B
Bash
Executable File
#!/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 ..
|
|
rm artifacts/*
|
|
cp ../../target/wasm32-wasi/release/ipfs_effector.wasm artifacts/
|
|
cp ../../target/wasm32-wasi/release/ipfs_pure.wasm artifacts/
|