5
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2024-09-19 00:59:37 +00:00
yggdrasil-go/build

23 lines
597 B
Plaintext
Raw Normal View History

2018-02-18 22:07:27 +00:00
#!/bin/sh
while getopts ud option
do
case "${option}"
in
u) UPX=true;;
d) DEBUG=true;;
esac
done
2017-12-29 04:16:20 +00:00
echo "Downloading..."
2018-12-08 01:56:04 +00:00
for CMD in `ls cmd/` ; do
echo "Building: $CMD"
2018-12-08 10:51:31 +00:00
IMPRINT="-X github.com/yggdrasil-network/yggdrasil-go/src/yggdrasil.buildName=$(sh contrib/semver/name.sh) -X github.com/yggdrasil-network/yggdrasil-go/src/yggdrasil.buildVersion=$(sh contrib/semver/version.sh --bare)"
if [ $DEBUG ]; then
2018-12-08 01:56:04 +00:00
go build -ldflags="$IMPRINT" -tags debug -v ./cmd/$CMD
else
2018-12-08 01:56:04 +00:00
go build -ldflags="$IMPRINT -s -w" -v ./cmd/$CMD
fi
if [ $UPX ]; then
2018-12-08 01:56:04 +00:00
upx --brute $CMD
fi
2017-12-29 04:16:20 +00:00
done