mirror of
https://github.com/fluencelabs/examples
synced 2025-04-25 10:42:16 +00:00
16 lines
297 B
Bash
16 lines
297 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
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/
|