2023-08-16 17:00:01 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# This script builds all subprojects and puts all created Wasm modules in one dir
|
|
|
|
marine build --release
|
|
|
|
|
|
|
|
rm artifacts/* || true
|
|
|
|
mkdir -p artifacts
|
|
|
|
|
2023-12-14 14:09:44 +00:00
|
|
|
cp ../../../target/wasm32-wasi/release/producer.wasm artifacts/
|