From a4204622b1c82476be5c66649f667301b8f5ca1f Mon Sep 17 00:00:00 2001 From: M Sazzadul Hoque <7600764+sazzad16@users.noreply.github.com> Date: Sat, 4 Dec 2021 21:21:49 +0600 Subject: [PATCH] Limit Redis branch to 6.2 for Jedis branch 3 (#2714) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c801c257d3..4e9060b077 100644 --- a/Makefile +++ b/Makefile @@ -469,7 +469,7 @@ travis-install: cd /usr/bin ;\ sudo ln -sf gcc-8 gcc ;\ sudo ln -sf g++-8 g++ - [ ! -e redis-git ] && git clone https://github.com/antirez/redis.git --branch unstable --single-branch redis-git || true + [ ! -e redis-git ] && git clone https://github.com/antirez/redis.git --branch 6.2 --single-branch redis-git || true $(MAKE) -C redis-git clean $(MAKE) -C redis-git @@ -478,7 +478,7 @@ circleci-install: cd /usr/bin ;\ sudo ln -sf gcc-8 gcc ;\ sudo ln -sf g++-8 g++ - [ ! -e redis-git ] && git clone https://github.com/antirez/redis.git --branch unstable --single-branch redis-git || true + [ ! -e redis-git ] && git clone https://github.com/antirez/redis.git --branch 6.2 --single-branch redis-git || true $(MAKE) -C redis-git clean $(MAKE) -C redis-git