Skip to content

Commit 02ecad7

Browse files
authored
Dependencies update (RedisJSON#981)
1 parent b929b6b commit 02ecad7

File tree

5 files changed

+40
-39
lines changed

5 files changed

+40
-39
lines changed

.circleci/config.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ commands:
8181
parameters:
8282
redis_version:
8383
type: string
84-
default: "7.0"
84+
default: "7"
8585
getredis_params:
8686
type: string
8787
default: ""
@@ -143,7 +143,7 @@ commands:
143143
default: ""
144144
redis_version:
145145
type: string
146-
default: "7.0"
146+
default: "7"
147147
getredis_params:
148148
type: string
149149
default: ""
@@ -341,7 +341,7 @@ jobs:
341341
parameters:
342342
redis_version:
343343
type: string
344-
default: "7.0"
344+
default: "7"
345345
persist:
346346
type: string
347347
default: "yes"
@@ -599,7 +599,7 @@ workflows:
599599
context: common
600600
matrix:
601601
parameters:
602-
platform: [jammy, focal, bionic, xenial, amzn2, rocky8, centos7, bullseye]
602+
platform: [jammy, focal, bionic, amzn2, rocky8, centos7, bullseye]
603603
- build-arm-platforms:
604604
<<: *on-integ-and-version-tags
605605
context: common
@@ -672,7 +672,7 @@ workflows:
672672
name: build-with-redis-<<matrix.redis_version>>
673673
matrix:
674674
parameters:
675-
redis_version: ["6.0", "6.2", "7", "7.2-rc1", "unstable"]
675+
redis_version: ["6.0", "6.2", "7.0", "7.2-rc1", "unstable"]
676676

677677
nightly-perf-once-a-week:
678678
triggers:

Cargo.lock

+28-28
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/docker/Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ include $(ROOT)/deps/readies/mk/main
55

66
REPO=rejson
77

8-
REDIS_VERSION=6.2.10
8+
REDIS_VERSION=7.2-rc1
99

1010
OSNICK.official=bullseye
1111

12-
INT_BRANCHES=2.4 2.2 2.0 1.2 1.0
12+
INT_BRANCHES=2.6 2.4 2.2 2.0 1.2 1.0
1313
LATEST_BRANCH=2.4
14-
PREVIEW_BRANCH=2.4
14+
PREVIEW_BRANCH=2.6
1515

1616
ART_DIR=$(ROOT)/bin/artifacts
1717

build/docker/dockerfile.tmpl

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
#----------------------------------------------------------------------------------------------
3-
FROM redisfab/redis:{{REDIS_VERSION}}-{{ARCH}}-{{OSNICK}} AS redis
3+
# FROM redisfab/redis:{{REDIS_VERSION}}-{{ARCH}}-{{OSNICK}} AS redis
44
FROM {{OS}} AS builder
55

66
RUN if [ -f /root/.profile ]; then sed -ie 's/mesg n/tty -s \&\& mesg -n/g' /root/.profile; fi
@@ -9,12 +9,13 @@ SHELL ["/bin/bash", "-l", "-c"]
99
RUN echo "Building for {{OSNICK}} ({{OS}}) for {{ARCH}} [with Redis {{REDIS_VERSION}}]"
1010

1111
WORKDIR /build
12-
COPY --from=redis /usr/local/ /usr/local/
12+
# COPY --from=redis /usr/local/ /usr/local/
1313

1414
ADD . /build
1515

1616
RUN ./deps/readies/bin/getupdates
1717
RUN VERBOSE=1 ./sbin/setup
18+
RUN ./deps/readies/bin/getredis -v {{REDIS_VERSION}}
1819
RUN make info
1920

2021
RUN make build SHOW=1

0 commit comments

Comments
 (0)