mirror of
https://github.com/fluencelabs/marine.git
synced 2025-03-15 14:00:50 +00:00
* use marine-rs-sdk with worker_id in CallParameters * add example * fix tests * update sdk version * add v0/v1 imports * fix bugs * update examples * use git dependency * fix effects extractor * fix marine-js build * fix marine-js tests * fix style * make clippy happy * update marine-rs-sdk * add version type * put v1 call_parameters import into right place
10 lines
248 B
Bash
Executable File
10 lines
248 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# This script builds all subprojects and puts all created Wasm modules in one dir
|
|
cargo run --release -p marine -- build --release
|
|
|
|
rm artifacts/* || true
|
|
mkdir -p artifacts
|
|
|
|
cp ../../target/wasm32-wasi/release/greeting.wasm artifacts/
|