mirror of
https://github.com/fluencelabs/registry.git
synced 2025-04-24 17:52:14 +00:00
11 lines
376 B
Bash
Executable File
11 lines
376 B
Bash
Executable File
#!/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.14.0_w/sqlite3.wasm -o artifacts/sqlite3.wasm
|