mirror of
https://github.com/fluencelabs/marine.git
synced 2024-12-11 22:40:18 +00:00
13 lines
271 B
Bash
13 lines
271 B
Bash
|
#/bin/sh
|
||
|
|
||
|
# This script builds all tests
|
||
|
(
|
||
|
cd records_allocation || exit;
|
||
|
cargo update --aggressive;
|
||
|
marine build --release;
|
||
|
rm artifacts/* || true;
|
||
|
mkdir artifacts
|
||
|
)
|
||
|
|
||
|
cp ../../../target/wasm32-wasi/release/records_allocation.wasm records_allocation/artifacts/
|