-
Notifications
You must be signed in to change notification settings - Fork 0
/
install_dependencies.sh
executable file
·89 lines (78 loc) · 4.25 KB
/
install_dependencies.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#!/bin/bash
if [[ -z $HYRISE_HEADLESS_SETUP ]]; then
read -p 'This script installs the dependencies of Hyrise. It might upgrade already installed packages. Continue? [y|n] ' -n 1 -r < /dev/tty
else
REPLY="y"
fi
echo
if echo $REPLY | grep -E '^[Yy]$' > /dev/null; then
unamestr=$(uname)
if [[ "$unamestr" == 'Darwin' ]]; then
brew --version 2>/dev/null || /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
echo "Installing dependencies (this may take a while)..."
if brew update >/dev/null; then
# check, for each program (aka. formula) individually with brew, whether it is already installed due to brew issues on macOS after system upgrade
# NOTE: The Mac CI server does not execute the install_dependencies.sh - formulas need to be installed manually.
for formula in autoconf boost cmake coreutils dos2unix graphviz libpq ncurses parallel pkg-config postgresql readline sqlite3 tbb; do
# if brew formula is installed
if brew ls --versions $formula > /dev/null; then
continue
fi
if ! brew install $formula; then
echo "Error during brew formula $formula installation."
exit 1
fi
done
if ! brew install llvm; then
echo "Error during llvm/clang installation."
exit 1
fi
if ! git submodule update --jobs 5 --init --recursive --depth 1; then
echo "Error during git fetching submodules."
exit 1
fi
if ! pip3 install -r requirements.txt; then
echo "Error during installation of python requirements."
exit 1
fi
else
echo "Error during installation."
exit 1
fi
elif [[ "$unamestr" == 'Linux' ]]; then
if [ -f /etc/lsb-release ] && cat /etc/lsb-release | grep DISTRIB_ID | grep Ubuntu >/dev/null; then
echo "Installing dependencies (this may take a while)..."
if sudo apt-get update >/dev/null; then
# Packages added here should also be added to the Dockerfile
sudo apt-get install --no-install-recommends -y autoconf bash-completion bc clang-11 clang-14 clang-format-14 clang-tidy-14 cmake curl dos2unix g++-9 gcc-9 g++-11 gcc-11 gcovr git graphviz libboost-all-dev libhwloc-dev libncurses5-dev libnuma-dev libnuma1 libpq-dev libreadline-dev libsqlite3-dev libtbb-dev lld man parallel postgresql-server-dev-all python3 python3-pip valgrind &
if ! git submodule update --jobs 5 --init --recursive; then
echo "Error during git fetching submodules."
exit 1
fi
if ! pip3 install -r requirements.txt; then
echo "Error during installation of python requirements."
exit 1
fi
wait $!
apt=$?
if [ $apt -ne 0 ]; then
echo "Error during apt-get installations."
exit 1
fi
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-11 90 --slave /usr/bin/g++ g++ /usr/bin/g++-11
# we use llvm-profdata-11 and llvm-cov-11 due to an unresolved issue with coverage under clang14 (https://github.com/llvm/llvm-project/issues/54907)
sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-14 90 --slave /usr/bin/clang++ clang++ /usr/bin/clang++-14 --slave /usr/bin/clang-tidy clang-tidy /usr/bin/clang-tidy-14 --slave /usr/bin/llvm-profdata llvm-profdata /usr/bin/llvm-profdata-11 --slave /usr/bin/llvm-cov llvm-cov /usr/bin/llvm-cov-11 --slave /usr/bin/clang-format clang-format /usr/bin/clang-format-14
else
echo "Error during installation."
exit 1
fi
else
echo "Unsupported system. You might get the install script to work if you remove the '/etc/lsb-release' line, but you will be on your own."
exit 1
fi
else
echo "Unsupported operating system $unamestr."
exit 1
fi
fi
exit 0