Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pinning meck to 0.9.2. #3966

Merged
merged 1 commit into from
Dec 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .expeditor/verify.pipeline.yml
Original file line number Diff line number Diff line change
@@ -259,6 +259,14 @@ steps:
- .expeditor/ha_chef_server.sh
env:
IS_AUTOMATE: true
DOCKER_CONFIG: /var/lib/buildkite-agent/.docker
HAB_BLDR_CHANNEL: "stable"
#HAB_STUDIO_SECRET_HAB_BLDR_CHANNEL: "curl8"
#HAB_FALLBACK_CHANNEL: "stable"
HAB_STUDIO_SECRET_HAB_FALLBACK_CHANNEL: "stable"
GOPROXY: "https://proxy.golang.org,direct"
GOSUMDB: "sum.golang.org"
PGGSSENCMODE: "disable"
timeout_in_minutes: 35
expeditor:
secrets:
3 changes: 2 additions & 1 deletion src/bookshelf/rebar.config
Original file line number Diff line number Diff line change
@@ -27,7 +27,8 @@
{iso8601, ".*",
{git, "https://github.com/erlsci/iso8601", {tag, "1.2.3"}}},
{meck, ".*",
{git, "https://github.com/eproxus/meck", {branch, "master"}}},
%% NOTE: Pinning version as main branch wants minimum_otp_vsn as 25 and we are currently at 24.
{git, "https://github.com/eproxus/meck", {ref, "5aaa24886db404f995c9a91b421367f6bfe6e566"}}},
{mini_s3, ".*",
{git, "https://github.com/chef/mini_s3", {branch, "main"}}},
{mixer, ".*",
5 changes: 3 additions & 2 deletions src/oc_erchef/rebar.config
Original file line number Diff line number Diff line change
@@ -114,9 +114,10 @@
{profiles, [
{test, [
{deps, [
meck,
{meck,
{git,"https://github.com/eproxus/meck", {ref,"e48641a20a605174e640ac91a528d443be11c9b9"}}},
{automeck,
{git, "https://github.com/chef/automeck", {branch, "master"}}},
{git, "https://github.com/chef/automeck", {branch, "otp_24"}}},
%% 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)
{proper, {git, "https://github.com/manopapad/proper", {ref, "cb73e68ad5b46ec11b0accc5c724647556a276a0"}}}
]},