Skip to content

Commit a8e1a6d

Browse files
committed
Redis 7.2-rc1 as default
1 parent 61120a0 commit a8e1a6d

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

.circleci/config.yml

Lines changed: 5 additions & 5 deletions
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:

build/docker/dockerfile.tmpl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11

22
#----------------------------------------------------------------------------------------------
3-
FROM redisfab/redis:{{REDIS_VERSION}}-{{ARCH}}-{{OSNICK}} AS redis
43
FROM {{OS}} AS builder
54

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

1110
WORKDIR /build
12-
COPY --from=redis /usr/local/ /usr/local/
1311

1412
ADD . /build
1513

1614
RUN ./deps/readies/bin/getupdates
1715
RUN VERBOSE=1 ./sbin/setup
16+
RUN ./deps/readies/bin/getredis -v {{REDIS_VERSION}}
1817
RUN make info
1918

2019
RUN make build SHOW=1

0 commit comments

Comments
 (0)