mirror of
https://github.com/fluencelabs/examples
synced 2025-03-30 14:41:06 +00:00
16 lines
341 B
Bash
Executable File
16 lines
341 B
Bash
Executable File
#!/usr/bin/env bash -o errexit -o nounset -o pipefail
|
|
|
|
mkdir -p artifacts
|
|
|
|
cd curl_adapter
|
|
fce build --release
|
|
cd ..
|
|
|
|
cd ether_price_getter
|
|
fce build --release
|
|
cd ..
|
|
|
|
rm -f artifacts/*
|
|
cp curl_adapter/target/wasm32-wasi/release/curl_adapter.wasm artifacts/
|
|
cp ether_price_getter/target/wasm32-wasi/release/ether_price_getter.wasm artifacts/
|