Skip to content
This repository has been archived by the owner on Nov 24, 2022. It is now read-only.

Commit

Permalink
Bash script for building binaries for various platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
eripa committed Aug 22, 2015
1 parent 6969908 commit cca6ce2
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions build_tarball.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
#!/bin/bash
#
# Simple bash script for building binaries for all relevant platforms

SCRIPT_DIR=$(dirname $0)
cd ${SCRIPT_DIR}

# Build
declare -a TARGETS=(darwin linux solaris freebsd)
for target in ${TARGETS[@]} ; do
output="prometheus-zfs-${target}"
echo "Building for ${target}, output bin/${output}"
GOOS=${target}
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)
if [ "$?" -ne 0 ] ; then
# No tag, use commit hash
HASH=$(git rev-parse HEAD)
VERSION=${HASH:0:7}
fi

cd ../
TARBALL="prometheus-zfs-${VERSION}.tar.gz"
tar -cf ${TARBALL} --exclude=.git -vz ${DIR_NAME}
echo "Created: ${PWD}/${TARBALL}"

0 comments on commit cca6ce2

Please sign in to comment.