mirror of
https://github.com/fluencelabs/registry.git
synced 2025-04-24 17:52:14 +00:00
12 lines
363 B
Bash
Executable File
12 lines
363 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
# This script builds all subprojects and puts all created Wasm modules in one dir
|
|
cargo update
|
|
marine 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
|