fix(cpp): move bazel build config for bdd/cpp to foreign/cpp#3675
Open
slbotbm wants to merge 3 commits into
Open
fix(cpp): move bazel build config for bdd/cpp to foreign/cpp#3675slbotbm wants to merge 3 commits into
slbotbm wants to merge 3 commits into
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #3675 +/- ##
============================================
- Coverage 73.62% 73.54% -0.09%
Complexity 937 937
============================================
Files 1297 1298 +1
Lines 143770 144010 +240
Branches 119328 119639 +311
============================================
+ Hits 105849 105910 +61
- Misses 34556 34640 +84
- Partials 3365 3460 +95
🚀 New features to boost your workflow:
|
slbotbm
force-pushed
the
cpp-bdd-softlink
branch
from
July 15, 2026 20:50
3bac9d6 to
44c0cca
Compare
slbotbm
force-pushed
the
cpp-bdd-softlink
branch
from
July 15, 2026 20:50
44c0cca to
13e83ff
Compare
hubcio
approved these changes
Jul 16, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
In #3662, we were facing a problem: we have two lockfiles in our repo. bdd/cpp declares the sdk as a local dependency, so the sdk's dependencies are also saved into bdd's lockfile. When the sdk's lockfile is updated, bdd's lockfile also needs to be updated, but it does not happen, and there is no way to tell dependabot to update bdd's lockfile.
This pr removes the bazel config inside bdd/cpp and adds a softlink to the c++ files and headers in bdd/cpp, allowing the building of bdd/cpp binary to happen inside foreign/cpp, thus solving the problem of tow lockfiles.
also upgrades bazel to 9.2.0
also reordered the tests/ directory a bit, dividing it into three folders: bdd/, e2e/, and unit/, and changed the file names a bit.