mirror of
https://github.com/fluencelabs/marine.git
synced 2024-12-12 14:55:32 +00:00
13 lines
358 B
Bash
Executable File
13 lines
358 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# This script builds all subprojects and puts all created Wasm modules in one dir
|
|
cargo update --aggressive
|
|
fce build --release
|
|
|
|
rm artifacts/* || true
|
|
mkdir -p artifacts
|
|
|
|
cp ../../target/wasm32-wasi/release/sqlite_test.wasm artifacts/
|
|
wget https://github.com/fluencelabs/sqlite/releases/download/v0.14.0_w/sqlite3.wasm
|
|
mv sqlite3.wasm artifacts/
|