mirror of
https://github.com/fluencelabs/examples
synced 2025-04-25 18:52:15 +00:00
15 lines
269 B
Bash
Executable File
15 lines
269 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
mkdir -p artifacts
|
|
rm -f artifacts/*.wasm
|
|
|
|
cd echo-service
|
|
marine build --release
|
|
cp target/wasm32-wasi/release/echo_service.wasm ../artifacts/
|
|
|
|
cd ../greeting
|
|
marine build --release
|
|
cp target/wasm32-wasi/release/greeting.wasm ../artifacts/
|
|
|
|
cd ..
|