mirror of
https://github.com/fluencelabs/examples
synced 2024-12-04 19:20:17 +00:00
440b3c3137
* add packaging script * add packaged module * add packaging script * add package * add package script * add package * add package script * add service package * update figure 1 * add packaged modules * update records module types * add packaging script * add packaedmodule * add flunce cli reference * Update marine-examples/README.md Co-authored-by: Valery Antopol <valery.antopol@gmail.com> * add newline * add newline * add newline * add newline * update module order * update module name --------- Co-authored-by: Valery Antopol <valery.antopol@gmail.com>
17 lines
381 B
Bash
Executable File
17 lines
381 B
Bash
Executable File
#!/bin/sh
|
|
set -o errexit -o nounset -o pipefail
|
|
|
|
# This script builds all subprojects and puts all created Wasm modules in one dir
|
|
cd pure
|
|
marine build --release
|
|
|
|
cd ../facade
|
|
marine build --release
|
|
|
|
cd ..
|
|
|
|
mkdir -p artifacts
|
|
rm -f artifacts/*.wasm
|
|
cp pure/target/wasm32-wasi/release/records_pure.wasm artifacts/
|
|
cp facade/target/wasm32-wasi/release/records_facade.wasm artifacts/
|