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

WIP Tiot/openriak 3.4/tictacaae and nextgenrepl cli commands #55

Open
wants to merge 18 commits into
base: openriak-3.4
Choose a base branch
from
Open
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@
]}.

{profiles, [
{test, [{deps, [meck]}]},
{test, [{deps, [{meck, {git, "https://github.com/OpenRiak/meck.git", {branch, "openriak-3.2"}}}]}]},

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cloning your own version of meck seems to me the wrong way to go

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is consistent with our approach everywhere, which is to clone all repos we depend on - only we didn't do it previously for test.

If we just get meck latest, as was - we're subject to time-expensive surprises when all our deps can no longer update. If we tag to a version, then we still need to check upstream for critical updates.

There's no perfect solution, so I'm happy that in this case we should resolve with the same solution used for non-test dependencies.

{gha, [{erl_opts, [{d, 'GITHUBEXCLUDE'}]}]}
]}.

{deps, [
{riak_core, {git, "https://github.com/OpenRiak/riak_core.git", {branch, "openriak-3.4"}}},
{riak_core, {git, "https://github.com/TI-Tokyo/riak_core.git", {branch, "tiot/openriak-3.4/tictacaae-and-nextgenrepl-cli-commands"}}},
{sidejob, {git, "https://github.com/OpenRiak/sidejob.git", {branch, "openriak-3.2"}}},
{bitcask, {git, "https://github.com/OpenRiak/bitcask.git", {branch, "openriak-3.2"}}},
{redbug, {git, "https://github.com/OpenRiak/redbug", {branch, "openriak-3.2"}}},
Expand All @@ -46,6 +46,6 @@
{riak_dt, {git, "https://github.com/OpenRiak/riak_dt.git", {branch, "openriak-3.2"}}},
{riak_api, {git, "https://github.com/OpenRiak/riak_api.git", {branch, "openriak-3.4"}}},
{hyper, {git, "https://github.com/OpenRiak/hyper", {branch, "openriak-3.2"}}},
{kv_index_tictactree, {git, "https://github.com/OpenRiak/kv_index_tictactree.git", {branch, "openriak-3.4"}}},
{kv_index_tictactree, {git, "https://github.com/TI-Tokyo/kv_index_tictactree.git", {branch, "tiot/openriak-3.4/tictacaae-and-nextgenrepl-cli-commands"}}},
{rhc, {git, "https://github.com/OpenRiak/riak-erlang-http-client", {branch, "openriak-3.4"}}}
]}.
Loading
Loading