mirror of
https://github.com/fluencelabs/examples
synced 2025-04-26 03:02:15 +00:00
15 lines
265 B
Bash
15 lines
265 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
mkdir -p artifacts
|
||
|
rm -f artifacts/*.wasm
|
||
|
|
||
|
cd echo-service
|
||
|
fce build --release
|
||
|
cp target/wasm32-wasi/release/echo_service.wasm ../artifacts/
|
||
|
cd ..
|
||
|
|
||
|
cd greeting
|
||
|
fce build --release
|
||
|
cp target/wasm32-wasi/release/greeting.wasm ../artifacts/
|
||
|
cd ..
|