mirror of
https://github.com/fluencelabs/marine.git
synced 2024-12-11 22:40:18 +00:00
e37e475663
* add test for allocation at offset more than 2gb * update wasmer-it version and use u32 instead of usize where needed * remove cargo.toml patch
13 lines
271 B
Bash
Executable File
13 lines
271 B
Bash
Executable File
#/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/
|