Skip to content

Commit b49d612

Browse files
Pinning meck to 0.9.2. (#3966)
Signed-off-by: sreepuramsudheer <[email protected]>
1 parent 5f9f879 commit b49d612

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

.expeditor/verify.pipeline.yml

+8
Original file line numberDiff line numberDiff line change
@@ -259,6 +259,14 @@ steps:
259259
- .expeditor/ha_chef_server.sh
260260
env:
261261
IS_AUTOMATE: true
262+
DOCKER_CONFIG: /var/lib/buildkite-agent/.docker
263+
HAB_BLDR_CHANNEL: "stable"
264+
#HAB_STUDIO_SECRET_HAB_BLDR_CHANNEL: "curl8"
265+
#HAB_FALLBACK_CHANNEL: "stable"
266+
HAB_STUDIO_SECRET_HAB_FALLBACK_CHANNEL: "stable"
267+
GOPROXY: "https://proxy.golang.org,direct"
268+
GOSUMDB: "sum.golang.org"
269+
PGGSSENCMODE: "disable"
262270
timeout_in_minutes: 35
263271
expeditor:
264272
secrets:

src/bookshelf/rebar.config

+2-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@
2727
{iso8601, ".*",
2828
{git, "https://github.com/erlsci/iso8601", {tag, "1.2.3"}}},
2929
{meck, ".*",
30-
{git, "https://github.com/eproxus/meck", {branch, "master"}}},
30+
%% NOTE: Pinning version as main branch wants minimum_otp_vsn as 25 and we are currently at 24.
31+
{git, "https://github.com/eproxus/meck", {ref, "5aaa24886db404f995c9a91b421367f6bfe6e566"}}},
3132
{mini_s3, ".*",
3233
{git, "https://github.com/chef/mini_s3", {branch, "main"}}},
3334
{mixer, ".*",

src/oc_erchef/rebar.config

+3-2
Original file line numberDiff line numberDiff line change
@@ -114,9 +114,10 @@
114114
{profiles, [
115115
{test, [
116116
{deps, [
117-
meck,
117+
{meck,
118+
{git,"https://github.com/eproxus/meck", {ref,"e48641a20a605174e640ac91a528d443be11c9b9"}}},
118119
{automeck,
119-
{git, "https://github.com/chef/automeck", {branch, "master"}}},
120+
{git, "https://github.com/chef/automeck", {branch, "otp_24"}}},
120121
%% NOTE: PROPER IS GPL V3, IT MUST REMAIN A TEST ONLY DEP. (Unpin once we're on R19, as proper now requires a recent erlang)
121122
{proper, {git, "https://github.com/manopapad/proper", {ref, "cb73e68ad5b46ec11b0accc5c724647556a276a0"}}}
122123
]},

0 commit comments

Comments
 (0)