Jake Hillion
b43f9ae58b
All checks were successful
continuous-integration/drone/push Build is passing
10 lines
235 B
Bash
Executable File
10 lines
235 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
set -x
|
|
|
|
# build for all architectures
|
|
cargo build --release
|
|
|
|
# tar binary files for upload
|
|
tar -czvf target/release/linux_amd64.tar.gz target/release/farm target/release/node target/release/plot target/release/wallet
|