mirror of
https://github.com/fluencelabs/marine.git
synced 2024-12-04 19:50:19 +00:00
c948b8b866
* 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
12 lines
257 B
Bash
Executable File
12 lines
257 B
Bash
Executable File
#/bin/sh
|
|
|
|
# This script builds all tests
|
|
(
|
|
cd lilo_after_2gb || exit;
|
|
cargo run --release -p marine -- build --release;
|
|
rm artifacts/* || true;
|
|
mkdir artifacts
|
|
)
|
|
|
|
cp ../../../target/wasm32-wasi/release/lilo_after_2gb.wasm lilo_after_2gb/artifacts/
|