oauth2_proxy/dist.sh

46 lines
1.2 KiB
Bash
Raw Normal View History

2014-11-10 02:48:09 +00:00
#!/bin/bash
# build binary distributions for linux/amd64 and darwin/amd64
set -e
2014-11-10 02:48:09 +00:00
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
echo "working dir $DIR"
mkdir -p $DIR/dist
dep ensure || exit 1
2014-11-10 02:48:09 +00:00
os=$(go env GOOS)
arch=$(go env GOARCH)
version=$(cat $DIR/version.go | grep "const VERSION" | awk '{print $NF}' | sed 's/"//g')
goversion=$(go version | awk '{print $3}')
sha256sum=()
2014-11-10 02:48:09 +00:00
echo "... running tests"
./test.sh
2014-11-10 02:48:09 +00:00
for os in windows linux darwin; do
2014-11-10 02:48:09 +00:00
echo "... building v$version for $os/$arch"
2017-03-27 18:35:28 +00:00
EXT=
if [ $os = windows ]; then
EXT=".exe"
fi
BUILD=$(mktemp -d ${TMPDIR:-/tmp}/oauth2_proxy.XXXXXX)
2015-05-21 06:50:21 +00:00
TARGET="oauth2_proxy-$version.$os-$arch.$goversion"
FILENAME="oauth2_proxy-$version.$os-$arch$EXT"
GOOS=$os GOARCH=$arch CGO_ENABLED=0 \
go build -ldflags="-s -w" -o $BUILD/$TARGET/$FILENAME || exit 1
pushd $BUILD/$TARGET
sha256sum+=("$(shasum -a 256 $FILENAME || exit 1)")
cd .. && tar czvf $TARGET.tar.gz $TARGET
2014-11-10 02:48:09 +00:00
mv $TARGET.tar.gz $DIR/dist
popd
done
checksum_file="sha256sum.txt"
cd $DIR/dist
if [ -f $checksum_file ]; then
rm $checksum_file
fi
touch $checksum_file
for checksum in "${sha256sum[@]}"; do
echo "$checksum" >> $checksum_file
done