mirror of
https://github.com/fluencelabs/examples
synced 2025-04-03 00:21:05 +00:00
11 lines
290 B
Bash
11 lines
290 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -o errexit -o nounset -o pipefail
|
||
|
|
||
|
# This script builds all subprojects and puts all created Wasm modules in one dir
|
||
|
cargo update --aggressive
|
||
|
marine build --release
|
||
|
|
||
|
mkdir -p artifacts
|
||
|
rm -f artifacts/*.wasm
|
||
|
cp target/wasm32-wasi/release/hello_peer.wasm artifacts/
|