mirror of
https://github.com/fluencelabs/examples
synced 2024-12-04 19:20:17 +00:00
6381411ed9
* init reorg * updated readme * fix CI * remove outdated ipfs-node example * add Readme * update readme, add config file Co-authored-by: folex <0xdxdy@gmail.com>
11 lines
288 B
Bash
Executable File
11 lines
288 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 --aggressive
|
|
marine build --release
|
|
|
|
mkdir -p artifacts
|
|
rm -f artifacts/*.wasm
|
|
cp target/wasm32-wasi/release/greeting.wasm artifacts/
|