Skip to content
Open
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ valkey-server --loadmodule ./target/release/libvalkey_bloom.so
# Builds the valkey-server (unstable) for integration testing.
SERVER_VERSION=unstable
./build.sh
# Same as above, but uses valkey-server (8.0.0) for integration testing.
SERVER_VERSION=8.0.0
# Same as above, but uses valkey-server (8.0) for integration testing.
SERVER_VERSION=8.0
./build.sh
# Build with asan, you may need to remove the old valkey binary if you have used ./build.sh before. You can do this by deleting the `.build` folder in the `tests` folder
ASAN_BUILD=true
Expand Down Expand Up @@ -76,4 +76,4 @@ valkey-server --loadmodule /path/to/libvalkey_bloom.so
cargo build --release --features valkey_8_0
```

This can also be done by specifying SERVER_VERSION=8.0.0 and then running `./build.sh`
This can also be done by specifying SERVER_VERSION=8.0 and then running `./build.sh`
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ if [ -z "$SERVER_VERSION" ]; then
export SERVER_VERSION="unstable"
fi

if [ "$SERVER_VERSION" != "unstable" ] && [ "$SERVER_VERSION" != "8.0" ] && [ "$SERVER_VERSION" != "8.1" ]; then
if [ "$SERVER_VERSION" != "unstable" ] && [ "$SERVER_VERSION" != "8.0" ] && [ "$SERVER_VERSION" != "8.1" ] && [ "$SERVER_VERSION" != "9.0" ]; then
echo "ERROR: Unsupported version - $SERVER_VERSION"
exit 1
fi
Expand Down
Loading