This repository has been archived on 2021-09-02. You can view files and clone it, but cannot push or open issues or pull requests.
my-bloody-hetzner-sb-notifier/build.sh

14 lines
327 B
Bash
Raw Permalink Normal View History

2018-10-26 12:34:01 +02:00
VERSION=1.0
GO111MODULE=on
2018-10-26 12:34:01 +02:00
CGO_ENABLED=0
GOOS=linux
GOARCH=amd64
echo "Fetching dependencies"
go get ./...
2018-10-26 12:34:01 +02:00
echo "Building project"
mkdir -p builds
go build -o ./builds/hetzner-sb-notifier_${GOOS}_${GOARCH}_${VERSION} .
#go build -a -installsuffix cgo -o ./builds/hetzner-sb-notifier_${GOOS}_${GOARCH}_${VERSION} .
2018-10-26 12:34:01 +02:00
echo "Done"