Skip to content

Commit 0df0f3c

Browse files
authored
use 8.0-RC1 (#3330)
1 parent 0cfcd1a commit 0df0f3c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/actions/run-tests/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ runs:
2525
2626
# Mapping of redis version to redis testing containers
2727
declare -A redis_version_mapping=(
28-
["8.0-M05"]="8.0-M05-pre"
28+
["8.0-RC1"]="8.0-RC1-pre"
2929
["7.4.2"]="rs-7.4.0-v2"
3030
["7.2.7"]="rs-7.2.0-v14"
3131
)

.github/workflows/build.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
redis-version:
21-
- "8.0-M05" # 8.0 milestone 5
21+
- "8.0-RC1" # 8.0 RC1
2222
- "7.4.2" # should use redis stack 7.4
2323
go-version:
2424
- "1.23.x"
@@ -43,7 +43,7 @@ jobs:
4343
4444
# Mapping of redis version to redis testing containers
4545
declare -A redis_version_mapping=(
46-
["8.0-M05"]="8.0-M05-pre"
46+
["8.0-RC1"]="8.0-RC1-pre"
4747
["7.4.2"]="rs-7.4.0-v2"
4848
)
4949
if [[ -v redis_version_mapping[$REDIS_VERSION] ]]; then
@@ -72,7 +72,7 @@ jobs:
7272
fail-fast: false
7373
matrix:
7474
redis-version:
75-
- "8.0-M05" # 8.0 milestone 5
75+
- "8.0-RC1" # 8.0 RC1
7676
- "7.4.2" # should use redis stack 7.4
7777
- "7.2.7" # should redis stack 7.2
7878
go-version:

search_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ var _ = Describe("RediSearch commands Resp 2", Label("search"), func() {
381381
// up until redis 8 the default scorer was TFIDF, in redis 8 it is BM25
382382
// this test expect redis major version >= 8
383383
It("should FTSearch WithScores", Label("search", "ftsearch"), func() {
384-
SkipBeforeRedisVersion(7.9, "default scorer is not BM25")
384+
SkipBeforeRedisVersion(7.9, "default scorer is not BM25STD")
385385

386386
text1 := &redis.FieldSchema{FieldName: "description", FieldType: redis.SearchFieldTypeText}
387387
val, err := client.FTCreate(ctx, "idx1", &redis.FTCreateOptions{}, text1).Result()

0 commit comments

Comments
 (0)