Skip to content

Commit

Permalink
Fix valkey-io#5 - Consider adding older engine versions (like 7.2)
Browse files Browse the repository at this point in the history
  • Loading branch information
Joe Hu committed Dec 10, 2024
1 parent 68dbc54 commit 06ffb50
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
server_version: ['unstable', '8.0.0']
server_version: ['unstable', '8.0', '7.2']
steps:
- uses: actions/checkout@v4
- name: Set the server version for python integration tests
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ ValkeyJSON leverages [RapidJSON](https://rapidjson.org/), a high-performance JSO

The default valkey version is "unstable". To override it, do:
```text
# Build valkey-server (8.0.0) and run integration tests
SERVER_VERSION=8.0.0 ./build.sh
# Build valkey-server (8.0) and run integration tests
SERVER_VERSION=8.0 ./build.sh
```

Custom compiler flags can be passed to the build script via environment variable CFLAGS. For example:
Expand All @@ -35,7 +35,7 @@ The default valkey version is "unstable". To override it, do:
```text
mdkir build
cd build
cmake .. -DVALKEY_VERSION=8.0.0
cmake .. -DVALKEY_VERSION=8.0
make
```

Expand Down

0 comments on commit 06ffb50

Please sign in to comment.