Archived
1
0
Fork 0

Initial release

This commit is contained in:
Julien Riou 2019-03-08 18:14:22 +01:00
commit 9818566369
No known key found for this signature in database
GPG key ID: BA3E15176E45E85D
10 changed files with 634 additions and 0 deletions

19
build.sh Executable file
View file

@ -0,0 +1,19 @@
#!/bin/bash
BINARY=patroniglue
VERSION=$(cat VERSION)
BUILD_PATH=/tmp/${BINARY}-${VERSION}
ldflags="-X main.AppVersion=${VERSION}"
GOOS=linux
GOARCH=amd64
DEPENDENCIES="github.com/gorilla/mux gopkg.in/yaml.v2"
export GOOS
export GOARCH
go get ${DEPENDENCIES}
go build -ldflags "$ldflags" -o ${BUILD_PATH}/${BINARY} src/*.go
(cd ${BUILD_PATH} && tar czf ${BINARY}-${VERSION}-${GOOS}-${GOARCH}.tar.gz ${BINARY})
echo "Archive created:"
ls -l ${BUILD_PATH}/${BINARY}-${VERSION}-${GOOS}-${GOARCH}.tar.gz