b834cdc94a
Summary: first version of coverage (will be polished) Reviewers: dgleich, mferencevic, florijan, teon.banek Reviewed By: dgleich Subscribers: pullbot, buda Differential Revision: https://phabricator.memgraph.io/D76
19 lines
364 B
Bash
Executable File
19 lines
364 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "START"
|
|
|
|
# install all dependencies on debian based operating systems
|
|
for pkg in wget git cmake uuid-dev clang-3.8 llvm-3.8 clang-format-3.8 doxygen; do
|
|
dpkg -s $pkg 2>/dev/null >/dev/null || sudo apt-get -y install $pkg
|
|
done
|
|
|
|
# create a default build directory
|
|
mkdir -p ./build
|
|
|
|
# setup libs (download)
|
|
cd libs
|
|
./setup.sh
|
|
cd ..
|
|
|
|
echo "DONE"
|