Generate Workspace using Gita#47
Merged
FScholPer merged 8 commits intoeclipse-score:mainfrom Dec 22, 2025
Merged
Conversation
df53b35 to
288cd9f
Compare
|
The created documentation from the pull request is available at: docu-html |
21b1519 to
e62de8f
Compare
98064b6 to
120fc34
Compare
This change adds the capability to generate a workspace directly from the known_good.json file. To achieve this, the known_good.json file is transformed into a configuration file for a git workspace management tool called gita, which is then used to check out all mentioned modules on the specific commit/branch that is given in known_good.json. In addition, the score_modules.MODULE.bazel is updated with local_path_overrides to the checked out modules. Hence, a bazel build will immediately work as expected. # Conflicts: # .gitignore # Conflicts: # .devcontainer/devcontainer.json
This does not work, since submodules require also commit tracking in the top-level repository. This would by default pollute reference_integration, which is certainly not what we want.
bf5f4d9 to
4934f3b
Compare
4934f3b to
0bad956
Compare
FScholPer
approved these changes
Dec 22, 2025
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.
This change adds the capability to generate a workspace directly from the
known_good.jsonfile. To achieve this, theknown_good.jsonfile is transformed into a configuration file for a git workspace management tool calledgita, which can then be used to check out all mentioned modules on the specific commit/branch that is given inknown_good.json. In addition, thescore_modules.MODULE.bazelcan be updated withlocal_path_overridesto the checked out modules. Hence, abazel buildwill immediately work as expected. For all these activities, VSCode Tasks are added and the README is updated.However, the general idea of this change is that more workspace managers can be added besides gita, if anyone wishes to do so.