Skip to content

Commit ae60523

Browse files
committed
Revert "use 8.0-M02"
This reverts commit dbb3f72.
1 parent 49dcf4d commit ae60523

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/CONTRIBUTING.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ This guide explains how to bootstrap and manage a test environment for Jedis usi
3232

3333
## Workflow Steps
3434
1. **Start the test environment** by running the following command (examples below).
35-
- For instance, to start the environment with Redis 8.0-M02, use `make start-test-env`.
35+
- For instance, to start the environment with Redis 8.0-M01, use `make start-test-env`.
3636
2. **Run tests** through your IDE, Maven, or other testing tools as needed.
3737
3. **Stop the test environment** by running the following command:
3838
- `make stop-test-env`
@@ -43,9 +43,9 @@ This guide explains how to bootstrap and manage a test environment for Jedis usi
4343
You can bootstrap the test environment for supported versions of Redis using the provided `make` targets.
4444

4545
## Option 1: Using `make` Targets
46-
To bring up the test environment for a specific Redis version (8.0-M02, 7.4.1, 7.2.6, or 6.2.16), use the following command:
46+
To bring up the test environment for a specific Redis version (8.0-M01, 7.4.1, 7.2.6, or 6.2.16), use the following command:
4747
```bash
48-
make start-test-env version=8.0-M02 # Replace with desired version
48+
make start-test-env version=8.0-M01 # Replace with desired version
4949
```
5050
To stop test environment:
5151
```bash
@@ -58,10 +58,10 @@ make test-on-docker
5858

5959
## Option 2: Using docker compose commands directly
6060
Docker compose file can be found in `src/test/resources/env` folder.
61-
- **Redis 8.0-M02**
61+
- **Redis 8.0-M01**
6262
```bash
6363
rm -rf /tmp/redis-env-work
64-
export REDIS_VERSION=8.0-M02
64+
export REDIS_VERSION=8.0-M01
6565
docker compose up
6666
```
6767
- **Redis 7.4.1, 7.2.6, 6.2.16,**

.github/workflows/test-on-docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
fail-fast: false
3737
matrix:
3838
redis_version:
39-
- "8.0-M02"
39+
- "8.0-M01"
4040
- "7.4.1"
4141
- "7.2.6"
4242
# - "6.2.16"

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
PATH := ./redis-git/src:${PATH}
22

33
# Supported test env versions
4-
SUPPORTED_TEST_ENV_VERSIONS := 8.0-M02 7.4.1 7.2.6 6.2.16
5-
DEFAULT_TEST_ENV_VERSION := 8.0-M02
4+
SUPPORTED_TEST_ENV_VERSIONS := 8.0-M01 7.4.1 7.2.6 6.2.16
5+
DEFAULT_TEST_ENV_VERSION := 8.0-M01
66
REDIS_ENV_WORK_DIR := $(or ${REDIS_ENV_WORK_DIR},/tmp/redis-env-work)
77

88
define REDIS1_CONF

src/test/resources/env/.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
REDIS_VERSION=8.0-M02
1+
REDIS_VERSION=8.0-M01
22
CLIENT_LIBS_TEST_IMAGE=redislabs/client-libs-test
33
REDIS_ENV_CONF_DIR=./
44
REDIS_MODULES_DIR=/tmp

0 commit comments

Comments
 (0)