This is an automated email from the ASF dual-hosted git repository.
hgruszecki pushed a change to branch loopback-queue
in repository https://gitbox.apache.org/repos/asf/iggy.git
omit fbda38a95 Merge branch 'master' into loopback-queue
omit 33610e687 feat(consensus): add loopback queue for primary
self-addressed messages
add 88f43f525 feat(cpp): add bazel building and testing infrastructure
(#2785)
add d5ae3c1f3 feat(consensus): add loopback queue for primary
self-addressed messages
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (fbda38a95)
\
N -- N -- N refs/heads/loopback-queue (d5ae3c1f3)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.github/actions/cpp-bazel/pre-merge/action.yml | 80 ++++++
.../actions/utils/setup-cpp-with-cache/action.yml | 34 +--
.github/config/components.yml | 9 +
.github/workflows/_detect.yml | 11 +-
.github/workflows/_test.yml | 21 +-
.github/workflows/pre-merge.yml | 21 +-
Cargo.toml | 2 +-
core/consensus/src/impls.rs | 36 ++-
core/consensus/src/plane_helpers.rs | 103 +++++++-
core/shard/src/lib.rs | 12 +-
foreign/cpp/.bazelrc | 54 ++++
foreign/cpp/.bazelversion | 1 +
.../iggy/Chart.yaml => foreign/cpp/.clang-format | 25 +-
foreign/cpp/.gitignore | 1 +
foreign/cpp/BUILD.bazel | 115 ++++++++
foreign/cpp/Cargo.lock | 291 +++++++++++++++++++++
{core/harness_derive => foreign/cpp}/Cargo.toml | 15 +-
bdd/node/Dockerfile => foreign/cpp/MODULE.bazel | 15 +-
foreign/cpp/MODULE.bazel.lock | 272 +++++++++++++++++++
foreign/cpp/README.md | 10 +
.../auto_login.rs => foreign/cpp/build.rs | 10 +-
foreign/cpp/include/iggy.hpp | 120 +++++++++
.../types/client/mod.rs => foreign/cpp/src/lib.rs | 6 +-
foreign/cpp/tests/test.cpp | 85 ++++++
24 files changed, 1265 insertions(+), 84 deletions(-)
create mode 100644 .github/actions/cpp-bazel/pre-merge/action.yml
copy bdd/python/pyproject.toml =>
.github/actions/utils/setup-cpp-with-cache/action.yml (61%)
create mode 100644 foreign/cpp/.bazelrc
create mode 100644 foreign/cpp/.bazelversion
copy helm/charts/iggy/Chart.yaml => foreign/cpp/.clang-format (69%)
create mode 100644 foreign/cpp/.gitignore
create mode 100644 foreign/cpp/BUILD.bazel
create mode 100644 foreign/cpp/Cargo.lock
copy {core/harness_derive => foreign/cpp}/Cargo.toml (83%)
copy bdd/node/Dockerfile => foreign/cpp/MODULE.bazel (81%)
create mode 100644 foreign/cpp/MODULE.bazel.lock
create mode 100644 foreign/cpp/README.md
copy core/common/src/types/configuration/auth_config/auto_login.rs =>
foreign/cpp/build.rs (83%)
create mode 100644 foreign/cpp/include/iggy.hpp
copy core/common/src/types/client/mod.rs => foreign/cpp/src/lib.rs (91%)
create mode 100644 foreign/cpp/tests/test.cpp