mirror of
https://github.com/fluencelabs/examples
synced 2025-03-23 19:40:53 +00:00
8 lines
198 B
Bash
8 lines
198 B
Bash
|
#!/usr/bin/env bash -o errexit -o nounset -o pipefail
|
||
|
cargo update --aggressive
|
||
|
|
||
|
mkdir -p artifacts
|
||
|
rm -f artifacts/*.wasm
|
||
|
marine build --release
|
||
|
cp target/wasm32-wasi/release/adder.wasm artifacts/
|