registry/service/build.sh

21 lines
607 B
Bash
Raw Normal View History

2021-07-28 13:53:38 +03:00
#!/usr/bin/env bash
set -o errexit -o nounset -o pipefail
# set current working directory to script directory to run script from everywhere
cd "$(dirname "$0")"
2022-02-24 16:37:58 +03:00
# build registry.wasm
2021-07-28 13:53:38 +03:00
cargo update
marine build --release
# copy .wasm to artifacts
rm -f artifacts/*
mkdir -p artifacts
2022-02-24 16:37:58 +03:00
cp target/wasm32-wasi/release/registry.wasm artifacts/
2021-07-28 13:53:38 +03:00
# download SQLite 3 to use in tests
2022-02-24 16:37:58 +03:00
curl -L https://github.com/fluencelabs/sqlite/releases/download/v0.15.0_w/sqlite3.wasm -o artifacts/sqlite3.wasm
2021-07-28 13:53:38 +03:00
# generate Aqua bindings
marine aqua artifacts/registry.wasm -s Registry -i registry >../aqua/registry-service.aqua