You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .circleci/config.yml
+8-3Lines changed: 8 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -71,7 +71,7 @@ commands:
71
71
parameters:
72
72
redis_version:
73
73
type: string
74
-
default: "7.2-rc1"
74
+
default: "7.2"
75
75
getredis_params:
76
76
type: string
77
77
default: ""
@@ -101,7 +101,7 @@ commands:
101
101
default: ""
102
102
redis_version:
103
103
type: string
104
-
default: "7.2-rc1"
104
+
default: "7.2"
105
105
getredis_params:
106
106
type: string
107
107
default: ""
@@ -111,6 +111,11 @@ commands:
111
111
- install-prerequisites:
112
112
redis_version: <<parameters.redis_version>>
113
113
getredis_params: <<parameters.getredis_params>>
114
+
- run:
115
+
name: patch macos tests # Avoid AVX with Regex with CircleCI since virtualization layer doesn't support it. Use sed to replace the relevant entry in cargo.toml
116
+
command: |
117
+
if [[ $(uname -s) == Darwin ]]; then sed -i 's/regex = "1"/regex = { version = "1", features = ["perf", "unicode"] }/g' Cargo.toml; fi
0 commit comments