30f4e9d47a
Summary: Futex test execution time was too long Test Plan: manual Reviewers: dgleich Reviewed By: dgleich Subscribers: pullbot, dgleich, buda Differential Revision: https://phabricator.memgraph.io/D56
14 lines
263 B
Bash
Executable File
14 lines
263 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# install all dependencies on debian based operating systems
|
|
for pkg in wget git cmake uuid-dev clang-3.8; do
|
|
dpkg -s $pkg 2>/dev/null >/dev/null || sudo apt-get -y install $pkg
|
|
done
|
|
|
|
# setup libs (download)
|
|
cd libs
|
|
./setup.sh
|
|
cd ..
|
|
|
|
echo "DONE"
|