vitess-gh/bootstrap.sh

216 строки
7.4 KiB
Bash
Исходник Обычный вид История

2012-02-25 11:30:03 +04:00
#!/bin/bash
# Copyright 2012, Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can
# be found in the LICENSE file.
2012-02-25 11:30:03 +04:00
SKIP_ROOT_INSTALLS=False
if [ "$1" = "--skip_root_installs" ]; then
SKIP_ROOT_INSTALLS=True
fi
# Exits if $1 is not 0 and prints $2 as error message.
function fail_on_error() {
local rc=$1
local msg=$2
if [ -z "$msg" ]; then
rc=1
msg="missing arguments in fail_on_error() call in bootstrap.sh."
fi
if [ $rc -ne 0 ]; then
echo "ERROR: $msg"
exit $rc
fi
}
2012-02-25 11:30:03 +04:00
if [ ! -f bootstrap.sh ]; then
fail_on_error 1 "bootstrap.sh must be run from its current directory"
2012-02-25 11:30:03 +04:00
fi
if [ "$USER" == "root" ]; then
fail_on_error 1 "Vitess cannot run as root. Please bootstrap with a non-root user."
fi
go version 2>&1 >/dev/null
fail_on_error $? "Go is not installed or is not on \$PATH"
2012-02-25 11:30:03 +04:00
. ./dev.env
mkdir -p $VTROOT/dist
mkdir -p $VTROOT/bin
mkdir -p $VTROOT/lib
mkdir -p $VTROOT/vthook
# install zookeeper
zk_ver=3.4.6
zk_dist=$VTROOT/dist/vt-zookeeper-$zk_ver
if [ -f $zk_dist/.build_finished ]; then
echo "skipping zookeeper build. remove $zk_dist to force rebuild."
else
rm -rf $zk_dist
(cd $VTROOT/dist && \
wget http://apache.cs.utah.edu/zookeeper/zookeeper-$zk_ver/zookeeper-$zk_ver.tar.gz && \
tar -xzf zookeeper-$zk_ver.tar.gz && \
mkdir -p $zk_dist/lib && \
cp zookeeper-$zk_ver/contrib/fatjar/zookeeper-$zk_ver-fatjar.jar $zk_dist/lib && \
(cd zookeeper-$zk_ver/src/c && \
./configure --prefix=$zk_dist && \
make install) && rm -rf zookeeper-$zk_ver zookeeper-$zk_ver.tar.gz)
fail_on_error $? "zookeeper build failed"
touch $zk_dist/.build_finished
fi
# install protoc and proto python libraries
protobuf_dist=$VTROOT/dist/protobuf
if [ $SKIP_ROOT_INSTALLS == "True" ]; then
echo "skipping protobuf build, as root version was already installed."
elif [ -f $protobuf_dist/.build_finished ]; then
echo "skipping protobuf build. remove $protobuf_dist to force rebuild."
else
rm -rf $protobuf_dist
2015-03-04 01:57:25 +03:00
mkdir -p $protobuf_dist/lib/python2.7/site-packages
# The directory may not have existed yet, so it may not have been
# picked up by dev.env yet, but the install needs it to exist first,
# and be in PYTHONPATH.
2015-03-04 01:57:25 +03:00
export PYTHONPATH=$(prepend_path $PYTHONPATH $protobuf_dist/lib/python2.7/site-packages)
./travis/install_protobuf.sh $protobuf_dist
fail_on_error $? "protobuf build failed"
touch $protobuf_dist/.build_finished
fi
# install gRPC C++ base, so we can install the python adapters
grpc_dist=$VTROOT/dist/grpc
if [ $SKIP_ROOT_INSTALLS == "True" ]; then
echo "skipping grpc build, as root version was already installed."
elif [ -f $grpc_dist/.build_finished ]; then
echo "skipping gRPC build. remove $grpc_dist to force rebuild."
else
rm -rf $grpc_dist
mkdir -p $grpc_dist
./travis/install_grpc.sh $grpc_dist
fail_on_error $? "gRPC build failed"
touch $grpc_dist/.build_finished
fi
ln -nfs $VTTOP/third_party/go/launchpad.net $VTROOT/src
go install launchpad.net/gozk/zookeeper
# Download third-party Go libraries.
# (We use one go get command (and therefore one variable) for all repositories because this saves us several seconds of execution time.)
repos="github.com/golang/glog \
github.com/golang/lint/golint \
github.com/golang/protobuf/proto \
github.com/golang/protobuf/protoc-gen-go \
github.com/tools/godep \
golang.org/x/net/context \
golang.org/x/oauth2/google \
golang.org/x/tools/cmd/goimports \
google.golang.org/grpc \
google.golang.org/cloud \
google.golang.org/cloud/storage \
"
# Packages for uploading code coverage to coveralls.io (used by Travis CI).
repos+=" github.com/modocache/gover github.com/mattn/goveralls"
# The cover tool needs to be installed into the Go toolchain, so it will fail
# if Go is installed somewhere that requires root access.
source tools/shell_functions.inc
if goversion_min 1.4; then
repos+=" golang.org/x/tools/cmd/cover"
else
repos+=" code.google.com/p/go.tools/cmd/cover"
fi
go get -u $repos
fail_on_error $? "Failed to download some Go dependencies with 'go get'. Please re-run bootstrap.sh in case of transient errors."
2013-03-09 00:01:49 +04:00
ln -snf $VTTOP/config $VTROOT/config
ln -snf $VTTOP/data $VTROOT/data
ln -snf $VTTOP/py $VTROOT/py-vtdb
ln -snf $VTTOP/go/zk/zkctl/zksrv.sh $VTROOT/bin/zksrv.sh
ln -snf $VTTOP/test/vthook-test.sh $VTROOT/vthook/test.sh
2013-03-09 00:01:49 +04:00
# install mysql
if [ -z "$MYSQL_FLAVOR" ]; then
export MYSQL_FLAVOR=MariaDB
fi
case "$MYSQL_FLAVOR" in
"MySQL56")
2015-04-23 00:21:18 +03:00
myversion=`$VT_MYSQL_ROOT/bin/mysql --version | grep 'Distrib 5\.6'`
if [ "$myversion" == "" ]; then
fail_on_error 1 "Couldn't find MySQL 5.6 in $VT_MYSQL_ROOT. Set VT_MYSQL_ROOT to override search location."
2015-04-23 00:21:18 +03:00
fi
echo "Found MySQL 5.6 installation in $VT_MYSQL_ROOT."
2015-02-20 00:03:12 +03:00
;;
"MariaDB")
myversion=`$VT_MYSQL_ROOT/bin/mysql --version | grep MariaDB`
if [ "$myversion" == "" ]; then
fail_on_error 1 "Couldn't find MariaDB in $VT_MYSQL_ROOT. Set VT_MYSQL_ROOT to override search location."
fi
echo "Found MariaDB installation in $VT_MYSQL_ROOT."
;;
*)
fail_on_error 1 "Unsupported MYSQL_FLAVOR $MYSQL_FLAVOR"
;;
esac
# save the flavor that was used in bootstrap, so it can be restored
# every time dev.env is sourced.
echo "$MYSQL_FLAVOR" > $VTROOT/dist/MYSQL_FLAVOR
# generate pkg-config, so go can use mysql C client
if [ ! -x $VT_MYSQL_ROOT/bin/mysql_config ]; then
fail_on_error 1 "Cannot execute $VT_MYSQL_ROOT/bin/mysql_config. Did you install a client dev package?"
fi
cp $VTTOP/config/gomysql.pc.tmpl $VTROOT/lib/gomysql.pc
echo "Version:" "$($VT_MYSQL_ROOT/bin/mysql_config --version)" >> $VTROOT/lib/gomysql.pc
echo "Cflags:" "$($VT_MYSQL_ROOT/bin/mysql_config --cflags) -ggdb -fPIC" >> $VTROOT/lib/gomysql.pc
if [ "$MYSQL_FLAVOR" == "MariaDB" ]; then
# Use static linking because the shared library doesn't export
# some internal functions we use, like cli_safe_read.
echo "Libs:" "$($VT_MYSQL_ROOT/bin/mysql_config --libs_r | sed 's,-lmysqlclient_r,-l:libmysqlclient.a -lstdc++,')" >> $VTROOT/lib/gomysql.pc
else
echo "Libs:" "$($VT_MYSQL_ROOT/bin/mysql_config --libs_r)" >> $VTROOT/lib/gomysql.pc
fi
# install bson
bson_dist=$VTROOT/dist/py-vt-bson-0.3.2
if [ -f $bson_dist/lib/python2.7/site-packages/bson/__init__.py ]; then
2012-02-25 11:30:03 +04:00
echo "skipping bson python build"
else
cd $VTTOP/third_party/py/bson-0.3.2 && \
2013-07-20 02:53:56 +04:00
python ./setup.py install --prefix=$bson_dist && \
rm -r build
2012-02-25 11:30:03 +04:00
fi
2015-06-26 08:51:53 +03:00
# install mock
mock_dist=$VTROOT/dist/py-mock-1.0.1
if [ -f $mock_dist/.build_finished ]; then
echo "skipping mock python build"
else
# Cleanup any existing data
# (e.g. necessary for Travis CI caching which creates .build_finished as directory and prevents this script from creating it as file).
rm -rf $mock_dist
2015-06-26 08:51:53 +03:00
# For some reason, it seems like setuptools won't create directories even with the --prefix argument
mkdir -p $mock_dist/lib/python2.7/site-packages
export PYTHONPATH=$(prepend_path $PYTHONPATH $mock_dist/lib/python2.7/site-packages)
2015-06-26 08:51:53 +03:00
cd $VTTOP/third_party/py && \
tar -xzf mock-1.0.1.tar.gz && \
cd mock-1.0.1 && \
python ./setup.py install --prefix=$mock_dist && \
touch $mock_dist/.build_finished && \
cd .. && \
rm -r mock-1.0.1
fi
2013-07-20 03:23:02 +04:00
# create pre-commit hooks
echo "creating git pre-commit hooks"
ln -sf $VTTOP/misc/git/pre-commit $VTTOP/.git/hooks/pre-commit
echo
echo "bootstrap finished - run 'source dev.env' in your shell before building."