Skip to content

Add 8.2 to test matrix #4195

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jul 24, 2025
Merged
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
1 change: 1 addition & 0 deletions .github/workflows/test-on-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ jobs:
fail-fast: false
matrix:
redis_version:
- "8.2"
- "8.0"
- "7.4"
- "7.2"
Expand Down
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
PATH := ./redis-git/src:${PATH}

# Supported test env versions
SUPPORTED_TEST_ENV_VERSIONS := 8.0 7.4 7.2 6.2
DEFAULT_TEST_ENV_VERSION := 8.0
SUPPORTED_TEST_ENV_VERSIONS := 8.2 8.0 7.4 7.2 6.2
DEFAULT_TEST_ENV_VERSION := 8.2
REDIS_ENV_WORK_DIR := $(or ${REDIS_ENV_WORK_DIR},/tmp/redis-env-work)

define REDIS1_CONF
Expand Down Expand Up @@ -473,7 +473,7 @@ start: cleanup compile-module
echo "$$REDIS_UDS" | redis-server -
echo "$$REDIS_UNAVAILABLE_CONF" | redis-server -
redis-cli -a cluster --cluster create 127.0.0.1:7479 127.0.0.1:7480 127.0.0.1:7481 --cluster-yes
docker run -p 6479:6379 --name jedis-stack -e PORT=6379 -d redislabs/client-libs-test:8.0.2
docker run -p 6479:6379 --name jedis-stack -e PORT=6379 -d redislabs/client-libs-test:8.2-RC1-pre

cleanup:
- rm -vf /tmp/redis_cluster_node*.conf 2>/dev/null
Expand Down
4 changes: 2 additions & 2 deletions src/test/resources/env/.env
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
REDIS_VERSION=8.0.2
REDIS_STACK_VERSION=8.0.2
REDIS_VERSION=8.2-RC1-pre
REDIS_STACK_VERSION=8.2-RC1-pre
CLIENT_LIBS_TEST_IMAGE=redislabs/client-libs-test
REDIS_ENV_CONF_DIR=./
REDIS_MODULES_DIR=/tmp
Expand Down
8 changes: 8 additions & 0 deletions src/test/resources/env/.env.v8.0
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
REDIS_VERSION=8.0.2
REDIS_STACK_VERSION=8.0.2
CLIENT_LIBS_TEST_IMAGE=redislabs/client-libs-test
REDIS_ENV_CONF_DIR=./
REDIS_MODULES_DIR=/tmp
REDIS_ENV_WORK_DIR=/tmp/redis-env-work

ENABLE_MODULE_COMMAND_DIRECTIVE=--enable-module-command yes
Loading