mirror of
https://github.com/fluencelabs/marine.git
synced 2025-04-02 06:01:04 +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
9 lines
180 B
Bash
Executable File
9 lines
180 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cargo run --release -p marine -- build --release;
|
|
|
|
rm -f artifacts/* || true;
|
|
mkdir -p artifacts;
|
|
|
|
cp ../../target/wasm32-wasi/release/call_parameters.wasm artifacts/;
|