mirror of
https://github.com/fluencelabs/examples
synced 2024-12-12 14:45:33 +00:00
11 lines
275 B
Bash
Executable File
11 lines
275 B
Bash
Executable File
#!/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
|
|
marine build --release
|
|
|
|
mkdir -p artifacts
|
|
rm -f artifacts/*.wasm
|
|
cp target/wasm32-wasi/release/greeting.wasm artifacts/
|