mirror of
https://github.com/fluencelabs/examples
synced 2024-12-15 15:45:39 +00:00
11 lines
362 B
Bash
Executable File
11 lines
362 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/*.wasm
|
|
cp target/wasm32-wasi/release/ethqlite.wasm artifacts/
|
|
wget https://github.com/fluencelabs/sqlite/releases/download/v0.10.0_w/sqlite3.wasm
|
|
mv sqlite3.wasm artifacts/
|