mirror of
https://github.com/fluencelabs/examples
synced 2025-05-29 02:31:19 +00:00
10 lines
206 B
Bash
10 lines
206 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -o errexit -o nounset -o pipefail
|
||
|
|
||
|
cargo update --aggressive
|
||
|
marine build --release
|
||
|
|
||
|
mkdir -p artifacts
|
||
|
rm -f artifacts/*
|
||
|
cp target/wasm32-wasi/release/cuckoo_filter.wasm artifacts/
|