2017-08-24 23:53:16 +08:00
|
|
|
#!/bin/bash -e
|
|
|
|
|
2017-12-20 18:24:48 +08:00
|
|
|
# TODO: Consider putting boost library in libs/setup.sh, since the license
|
|
|
|
# allows source modification and static compilation. Unfortunately, it is quite
|
|
|
|
# a pain to set up the boost build process.
|
2017-08-24 23:53:16 +08:00
|
|
|
required_pkgs=(git arcanist # source code control
|
|
|
|
cmake clang-3.8 llvm-3.8 pkg-config # build system
|
|
|
|
curl wget # for downloading libs
|
|
|
|
uuid-dev default-jre-headless # required by antlr
|
|
|
|
libreadline-dev # for memgraph console
|
2018-01-15 18:16:19 +08:00
|
|
|
libboost-iostreams-dev
|
2017-12-20 18:24:48 +08:00
|
|
|
libboost-serialization-dev
|
2017-08-24 23:53:16 +08:00
|
|
|
python3 python-virtualenv python3-pip # for qa, macro_benchmark and stress tests
|
|
|
|
)
|
|
|
|
|
|
|
|
optional_pkgs=(clang-format # source code formatting
|
|
|
|
doxygen graphviz # source documentation generators
|
|
|
|
php-cli # for user technical documentation generators
|
|
|
|
)
|
|
|
|
|
|
|
|
use_sudo=0
|
|
|
|
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
cd "$DIR"
|
2016-11-19 00:35:29 +08:00
|
|
|
|
2017-04-06 18:05:58 +08:00
|
|
|
function print_help () {
|
|
|
|
echo "Usage: $0 [OPTION]"
|
|
|
|
echo -e "Check for missing packages and install them if possible.\n"
|
|
|
|
echo "Optional arguments:"
|
|
|
|
echo -e " -s\tuse sudo apt-get for installing packages"
|
|
|
|
echo -e " -h\tdisplay this help and exit"
|
|
|
|
}
|
|
|
|
|
2017-08-24 23:53:16 +08:00
|
|
|
function setup_virtualenv () {
|
|
|
|
pushd $1 > /dev/null
|
|
|
|
echo "Setting up virtualenv for: $1"
|
2017-04-06 18:05:58 +08:00
|
|
|
|
2017-08-24 23:53:16 +08:00
|
|
|
# remove old virtualenv
|
|
|
|
if [ -d ve3 ]; then
|
|
|
|
rm -rf ve3
|
|
|
|
fi
|
2017-04-06 18:05:58 +08:00
|
|
|
|
2017-08-24 23:53:16 +08:00
|
|
|
# create new virtualenv
|
|
|
|
virtualenv -p python3 ve3 || exit 1
|
|
|
|
source ve3/bin/activate
|
2018-04-17 17:17:30 +08:00
|
|
|
# we need to increase the timeout for pip because our local cache server
|
|
|
|
# can sometimes be stupid, see: https://github.com/devpi/devpi/issues/208
|
|
|
|
pip --timeout 1000 install -i http://deps.memgraph.io:3141/root/pypi \
|
2017-08-24 23:53:16 +08:00
|
|
|
--trusted-host deps.memgraph.io -r requirements.txt || exit 1
|
|
|
|
deactivate
|
|
|
|
|
|
|
|
popd > /dev/null
|
|
|
|
}
|
2017-04-06 18:05:58 +08:00
|
|
|
|
|
|
|
if [[ $# -gt 1 ]]; then
|
|
|
|
print_help
|
|
|
|
exit 1
|
|
|
|
elif [[ $# -eq 1 ]]; then
|
|
|
|
case "$1" in
|
|
|
|
-s)
|
|
|
|
use_sudo=1
|
|
|
|
;;
|
|
|
|
-h)
|
|
|
|
print_help
|
|
|
|
exit 0
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
# unknown option
|
|
|
|
print_help
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Started installing dependencies for Memgraph"
|
|
|
|
|
|
|
|
required_missing=0
|
2017-03-08 01:25:49 +08:00
|
|
|
|
2017-02-21 22:44:12 +08:00
|
|
|
# install all dependencies on debian based operating systems
|
2017-04-06 18:05:58 +08:00
|
|
|
for pkg in ${required_pkgs[@]}; do
|
|
|
|
if dpkg -s $pkg 2>/dev/null >/dev/null; then
|
|
|
|
echo "Found $pkg"
|
|
|
|
elif (( $use_sudo )); then
|
|
|
|
echo "Installing $pkg"
|
|
|
|
if [[ ! `sudo apt-get -y install $pkg` ]]; then
|
|
|
|
echo "Didn't install $pkg [required]"
|
|
|
|
required_missing=1
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
echo "Missing $pkg [required]"
|
|
|
|
required_missing=1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
for pkg in ${optional_pkgs[@]}; do
|
|
|
|
if dpkg -s $pkg 2>/dev/null >/dev/null; then
|
|
|
|
echo "Found $pkg [optional]"
|
|
|
|
else
|
|
|
|
echo "Missing $pkg [optional]"
|
|
|
|
fi
|
2017-02-21 22:44:12 +08:00
|
|
|
done
|
2016-11-19 00:35:29 +08:00
|
|
|
|
2017-04-06 18:05:58 +08:00
|
|
|
if (( $required_missing )); then
|
|
|
|
echo "Missing required packages. EXITING!"
|
|
|
|
echo "Please, install required packages and rerun $0 again."
|
|
|
|
exit 2
|
|
|
|
fi
|
|
|
|
|
2017-03-06 23:15:20 +08:00
|
|
|
# create a default build directory
|
|
|
|
mkdir -p ./build
|
|
|
|
|
2017-02-21 22:44:12 +08:00
|
|
|
# setup libs (download)
|
2016-11-19 00:35:29 +08:00
|
|
|
cd libs
|
2017-12-05 17:00:38 +08:00
|
|
|
./cleanup.sh
|
2016-11-19 00:35:29 +08:00
|
|
|
./setup.sh
|
|
|
|
cd ..
|
|
|
|
|
2017-07-21 19:09:22 +08:00
|
|
|
# setup qa dependencies
|
2017-08-24 23:53:16 +08:00
|
|
|
setup_virtualenv tests/qa
|
2017-07-21 19:09:22 +08:00
|
|
|
|
2017-08-02 16:48:33 +08:00
|
|
|
# setup stress dependencies
|
2017-08-24 23:53:16 +08:00
|
|
|
setup_virtualenv tests/stress
|
2017-08-02 16:48:33 +08:00
|
|
|
|
2017-04-06 18:05:58 +08:00
|
|
|
echo "Done installing dependencies for Memgraph"
|