2016-03-23 12:39:24 +01:00
|
|
|
#!/bin/bash
|
2016-03-24 15:11:56 +01:00
|
|
|
#
|
|
|
|
#
|
2016-08-12 13:04:17 +02:00
|
|
|
|
2018-05-27 20:29:09 +03:00
|
|
|
RELEASE_VERSION=
|
2018-05-27 20:49:08 +03:00
|
|
|
buildpath=
|
|
|
|
|
|
|
|
function setuptree() {
|
|
|
|
b=$( mktemp -d $buildpath/gh-ostXXXXXX ) || return 1
|
|
|
|
mkdir -p $b/gh-ost
|
|
|
|
mkdir -p $b/gh-ost/usr/bin
|
|
|
|
echo $b
|
|
|
|
}
|
2016-03-23 12:39:24 +01:00
|
|
|
|
2016-08-12 13:04:17 +02:00
|
|
|
function build {
|
2018-05-27 20:49:08 +03:00
|
|
|
osname=$1
|
|
|
|
osshort=$2
|
|
|
|
GOOS=$3
|
|
|
|
GOARCH=$4
|
2016-08-12 13:04:17 +02:00
|
|
|
|
2021-05-25 13:22:28 +02:00
|
|
|
if ! go version | egrep -q 'go(1\.1[56])' ; then
|
|
|
|
echo "go version must be 1.15 or above"
|
2019-08-12 08:03:17 +03:00
|
|
|
exit 1
|
2018-05-27 20:49:08 +03:00
|
|
|
fi
|
2017-11-23 12:13:25 +02:00
|
|
|
|
2021-05-25 13:22:28 +02:00
|
|
|
# TODO: remove GO111MODULE once gh-ost uses Go modules
|
2018-05-27 20:49:08 +03:00
|
|
|
echo "Building ${osname} binary"
|
|
|
|
export GOOS
|
|
|
|
export GOARCH
|
2021-05-25 13:22:28 +02:00
|
|
|
GO111MODULE=off go build -ldflags "$ldflags" -o $buildpath/$target go/cmd/gh-ost/main.go
|
2016-08-12 13:04:17 +02:00
|
|
|
|
2018-05-27 20:49:08 +03:00
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
echo "Build failed for ${osname}"
|
|
|
|
exit 1
|
|
|
|
fi
|
2016-08-12 13:04:17 +02:00
|
|
|
|
2018-05-27 20:49:08 +03:00
|
|
|
(cd $buildpath && tar cfz ./gh-ost-binary-${osshort}-${timestamp}.tar.gz $target)
|
|
|
|
|
|
|
|
if [ "$GOOS" == "linux" ] ; then
|
|
|
|
echo "Creating Distro full packages"
|
2018-05-27 21:03:44 +03:00
|
|
|
builddir=$(setuptree)
|
2018-05-27 20:49:08 +03:00
|
|
|
cp $buildpath/$target $builddir/gh-ost/usr/bin
|
2018-05-27 20:53:18 +03:00
|
|
|
cd $buildpath
|
2021-04-06 18:15:05 +03:00
|
|
|
fpm -v "${RELEASE_VERSION}" --epoch 1 -f -s dir -n gh-ost -m 'shlomi-noach <shlomi-noach+gh-ost-deb@github.com>' --description "GitHub's Online Schema Migrations for MySQL " --url "https://github.com/github/gh-ost" --vendor "GitHub" --license "Apache 2.0" -C $builddir/gh-ost --prefix=/ -t rpm --rpm-rpmbuild-define "_build_id_links none" .
|
2019-02-12 08:01:47 +02:00
|
|
|
fpm -v "${RELEASE_VERSION}" --epoch 1 -f -s dir -n gh-ost -m 'shlomi-noach <shlomi-noach+gh-ost-deb@github.com>' --description "GitHub's Online Schema Migrations for MySQL " --url "https://github.com/github/gh-ost" --vendor "GitHub" --license "Apache 2.0" -C $builddir/gh-ost --prefix=/ -t deb --deb-no-default-config-files .
|
2018-05-27 20:49:08 +03:00
|
|
|
fi
|
2016-08-12 13:04:17 +02:00
|
|
|
}
|
|
|
|
|
2018-05-27 20:29:09 +03:00
|
|
|
main() {
|
|
|
|
if [ -z "${RELEASE_VERSION}" ] ; then
|
|
|
|
RELEASE_VERSION=$(git describe --abbrev=0 --tags | tr -d 'v')
|
|
|
|
fi
|
|
|
|
if [ -z "${RELEASE_VERSION}" ] ; then
|
|
|
|
RELEASE_VERSION=$(cat RELEASE_VERSION)
|
|
|
|
fi
|
2016-03-23 12:39:24 +01:00
|
|
|
|
|
|
|
|
2018-05-27 20:59:58 +03:00
|
|
|
buildpath=/tmp/gh-ost-release
|
2018-05-27 20:29:09 +03:00
|
|
|
target=gh-ost
|
|
|
|
timestamp=$(date "+%Y%m%d%H%M%S")
|
|
|
|
ldflags="-X main.AppVersion=${RELEASE_VERSION}"
|
|
|
|
|
|
|
|
mkdir -p ${buildpath}
|
2018-05-27 21:02:00 +03:00
|
|
|
rm -rf ${buildpath:?}/*
|
2018-05-27 20:29:09 +03:00
|
|
|
build GNU/Linux linux linux amd64
|
2020-02-09 16:11:34 +02:00
|
|
|
# build macOS osx darwin amd64
|
2018-05-27 20:29:09 +03:00
|
|
|
|
|
|
|
echo "Binaries found in:"
|
2020-02-09 16:11:34 +02:00
|
|
|
find $buildpath/gh-ost* -type f -maxdepth 1
|
2018-05-27 20:29:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
main "$@"
|