Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
sudo ln -s /home/circleci/project/cmake-bin/bin/cmake /usr/local/bin/cmake
echo `cmake --version`
rm -rf /home/circleci/project/deps
DEPS_DIRECTORY=deps bash get_deps.sh cpu
bash get_deps.sh cpu
git clone git://github.com/antirez/redis.git --branch 5.0
(cd redis && make malloc=libc -j4 && sudo make install)

Expand Down
6 changes: 1 addition & 5 deletions get_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,9 @@ set -x
BASE_DIRECTORY=`pwd`

# Allow different deps for different platforms:
PLATNAME=${OSTYPE}
if [ -e /etc/debian-version ]; then
PLATNAME=${PLATNAME}-deb
fi

if [ -z "$DEPS_DIRECTORY" ]; then
DEPS_DIRECTORY=${BASE_DIRECTORY}/deps-${PLATNAME}
DEPS_DIRECTORY=${BASE_DIRECTORY}/deps
fi

mkdir -p ${DEPS_DIRECTORY}
Expand Down