marine/examples/records/build.sh

21 lines
432 B
Bash
Raw Normal View History

2020-09-15 22:14:15 +00:00
#!/bin/sh
# This script builds all subprojects and puts all created Wasm modules in one dir
(
cd effector || exit;
cargo update --aggressive;
2021-05-10 09:51:22 +00:00
marine build --release;
)
(
cd pure || exit;
cargo update --aggressive;
2021-05-10 09:51:22 +00:00
marine build --release;
)
rm artifacts/* || true
mkdir -p artifacts
2020-09-15 22:14:15 +00:00
cp ../../target/wasm32-wasi/release/records_effector.wasm artifacts/
cp ../../target/wasm32-wasi/release/records_pure.wasm artifacts/