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
+5-2Lines changed: 5 additions & 2 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: ""
@@ -118,6 +118,9 @@ commands:
118
118
name: Check formatting
119
119
shell: /bin/bash -l -eo pipefail
120
120
command: make lint
121
+
- run:
122
+
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
123
+
command: if [[ $(uname -s) == Darwin ]]; then sed -i 's/regex = "1"/regex = { version = "1", default-features = ["perf", "unicode"] }/g' Cargo.toml; fi
0 commit comments