Merge branch 'master' into support-generated-columns
This commit is contained in:
commit
b93120413b
52
build.sh
52
build.sh
@ -2,7 +2,15 @@
|
|||||||
#
|
#
|
||||||
#
|
#
|
||||||
|
|
||||||
RELEASE_VERSION=$(cat RELEASE_VERSION)
|
RELEASE_VERSION=
|
||||||
|
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
|
||||||
|
}
|
||||||
|
|
||||||
function build {
|
function build {
|
||||||
osname=$1
|
osname=$1
|
||||||
@ -10,6 +18,8 @@ function build {
|
|||||||
GOOS=$3
|
GOOS=$3
|
||||||
GOARCH=$4
|
GOARCH=$4
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if ! go version | egrep -q 'go(1[.]9|1[.]1[0-9])' ; then
|
if ! go version | egrep -q 'go(1[.]9|1[.]1[0-9])' ; then
|
||||||
echo "go version is too low. Must use 1.9 or above"
|
echo "go version is too low. Must use 1.9 or above"
|
||||||
exit 1
|
exit 1
|
||||||
@ -26,16 +36,38 @@ function build {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
(cd $buildpath && tar cfz ./gh-ost-binary-${osshort}-${timestamp}.tar.gz $target)
|
(cd $buildpath && tar cfz ./gh-ost-binary-${osshort}-${timestamp}.tar.gz $target)
|
||||||
|
|
||||||
|
if [ "$GOOS" == "linux" ] ; then
|
||||||
|
echo "Creating Distro full packages"
|
||||||
|
builddir=$(setuptree)
|
||||||
|
cp $buildpath/$target $builddir/gh-ost/usr/bin
|
||||||
|
cd $buildpath
|
||||||
|
fpm -v "${RELEASE_VERSION}" --epoch 1 -f -s dir -n gh-ost -m shlomi-noach --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 .
|
||||||
|
fpm -v "${RELEASE_VERSION}" --epoch 1 -f -s dir -n gh-ost -m shlomi-noach --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 .
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
buildpath=/tmp/gh-ost
|
main() {
|
||||||
target=gh-ost
|
if [ -z "${RELEASE_VERSION}" ] ; then
|
||||||
timestamp=$(date "+%Y%m%d%H%M%S")
|
RELEASE_VERSION=$(git describe --abbrev=0 --tags | tr -d 'v')
|
||||||
ldflags="-X main.AppVersion=${RELEASE_VERSION}"
|
fi
|
||||||
|
if [ -z "${RELEASE_VERSION}" ] ; then
|
||||||
|
RELEASE_VERSION=$(cat RELEASE_VERSION)
|
||||||
|
fi
|
||||||
|
|
||||||
mkdir -p ${buildpath}
|
|
||||||
build macOS osx darwin amd64
|
|
||||||
build GNU/Linux linux linux amd64
|
|
||||||
|
|
||||||
echo "Binaries found in:"
|
buildpath=/tmp/gh-ost-release
|
||||||
ls -1 $buildpath/gh-ost-binary*${timestamp}.tar.gz
|
target=gh-ost
|
||||||
|
timestamp=$(date "+%Y%m%d%H%M%S")
|
||||||
|
ldflags="-X main.AppVersion=${RELEASE_VERSION}"
|
||||||
|
|
||||||
|
mkdir -p ${buildpath}
|
||||||
|
rm -rf ${buildpath:?}/*
|
||||||
|
build macOS osx darwin amd64
|
||||||
|
build GNU/Linux linux linux amd64
|
||||||
|
|
||||||
|
echo "Binaries found in:"
|
||||||
|
ls -1 $buildpath/gh-ost-binary*${timestamp}.tar.gz
|
||||||
|
}
|
||||||
|
|
||||||
|
main "$@"
|
||||||
|
Loading…
Reference in New Issue
Block a user