-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild_tarball.sh
executable file
·39 lines (34 loc) · 1.03 KB
/
build_tarball.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/bin/bash
#
# Shell script for building binaries for all relevant platforms
SCRIPT_DIR=$(dirname $0)
cd ${SCRIPT_DIR}
go test
if [ "$?" -ne "0" ] ; then
echo "go test failed, aborting"
exit 1
fi
# Build
declare -a TARGETS=(darwin linux solaris freebsd, windows)
for target in ${TARGETS[@]} ; do
output="mysql-minion-${target}"
echo "Building for ${target}, output bin/${output}"
export GOOS=${target}
export GOARCH=amd64
go build -o bin/${output}
done
# Create a tar-ball for release
DIR_NAME=${PWD##*/} # name of current directory, presumably prometheus-zfs
VERSION=$(git describe --abbrev=0 --tags 2> /dev/null) # this doesn't actually seem to work
if [ "$?" -ne 0 ] ; then
# No tag, use commit hash
HASH=$(git rev-parse HEAD)
VERSION=${HASH:0:7}
fi
mkdir -p dist
rm -R dist/*
cd ..
TARBALL="mysql-minion-${VERSION}.tar.gz"
tar -cf ${TARBALL} --exclude=.git --exclude=setenv.sh.example --exclude=build_tarball.sh --exclude=dist -vz ${DIR_NAME}
mv ${TARBALL} ${DIR_NAME}/dist/
echo "Created: ${DIR_NAME}/dist/${TARBALL}"