mirror of
https://github.com/fluencelabs/registry.git
synced 2025-04-25 02:02:14 +00:00
11 lines
376 B
Bash
11 lines
376 B
Bash
|
#!/usr/bin/env bash -o errexit -o nounset -o pipefail
|
||
|
|
||
|
# This script builds all subprojects and puts all created Wasm modules in one dir
|
||
|
cargo update
|
||
|
fce build --release
|
||
|
|
||
|
rm -f artifacts/*
|
||
|
mkdir -p artifacts
|
||
|
cp target/wasm32-wasi/release/aqua-dht.wasm artifacts/
|
||
|
curl -L https://github.com/fluencelabs/sqlite/releases/download/v0.10.0_w/sqlite3.wasm -o artifacts/sqlite3.wasm
|