mirror of
https://github.com/fluencelabs/marine-rs-sdk-test
synced 2024-12-11 18:40:17 +00:00
0e164f32d2
* update fluence-app-service to 0.29.0 * Try fix the CI examples build * fix example build
10 lines
224 B
Bash
Executable File
10 lines
224 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/producer.wasm artifacts/
|