mirror of
https://github.com/fluencelabs/examples
synced 2024-12-13 07:05:31 +00:00
12 lines
299 B
Bash
Executable File
12 lines
299 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -o errexit -o nounset -o pipefail
|
|
|
|
|
|
cargo update --aggressive
|
|
marine build --release
|
|
|
|
rm -f artifacts/*.wasm
|
|
cp target/wasm32-wasi/release/ethqlite.wasm artifacts/
|
|
wget https://github.com/fluencelabs/sqlite/releases/download/v0.15.0_w/sqlite3.wasm
|
|
mv sqlite3.wasm artifacts/
|