From b1103e3d436b6fe98813ecbbe1f99dc8d59b06c9 Mon Sep 17 00:00:00 2001 From: Chayim Date: Wed, 26 Jul 2023 14:58:49 +0300 Subject: [PATCH] Bumping redis versions (#2662) --- .github/workflows/build.yml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 30fb9e85..403e199d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,7 +20,7 @@ jobs: services: redis: - image: redis:7.2-rc + image: redis/redis-stack-server:edge options: >- --health-cmd "redis-cli ping" --health-interval 10s --health-timeout 5s --health-retries 5 ports: diff --git a/Makefile b/Makefile index 285f65dd..b59c3955 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,7 @@ bench: testdeps testdata/redis: mkdir -p $@ - wget -qO- https://download.redis.io/releases/redis-7.2-rc1.tar.gz | tar xvz --strip-components=1 -C $@ + wget -qO- https://download.redis.io/releases/redis-7.2-rc3.tar.gz | tar xvz --strip-components=1 -C $@ testdata/redis/src/redis-server: testdata/redis cd $< && make all