mirror of
https://github.com/fluencelabs/marine-rs-sdk-test
synced 2024-12-11 10:30:18 +00:00
0bf0489ed2
* move related examples * update Cargo.lock * update test macro invocations * update naming + add CI step * add marine download CI step * remove aggressive cargo update * fix ci
10 lines
221 B
Bash
Executable File
10 lines
221 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# This script builds all subprojects and puts all created Wasm modules in one dir
|
|
marine build --release
|
|
|
|
rm artifacts/* || true
|
|
mkdir -p artifacts
|
|
|
|
cp ../../target/wasm32-wasi/release/greeting.wasm artifacts/
|