update modules for 0.5.0 release#21
Merged
AlexanderLanin merged 3 commits intoeclipse-score:mainfrom Nov 10, 2025
Merged
Conversation
There was a problem hiding this comment.
Pull Request Overview
This PR refactors the integration workspace to use versioned module dependencies instead of git overrides, improving dependency management and creating a cleaner separation of concerns. The changes standardize module naming from hyphenated to underscore format (e.g., score-baselibs → score_baselibs).
Key changes:
- Migration from git_override to single_version_override for most modules, establishing versioned dependencies
- Extraction of toolchain configuration into a separate
score_toolchains.MODULE.bazelfile - Addition of a patch system for communication module to fix repository label references
Reviewed Changes
Copilot reviewed 10 out of 10 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| score_toolchains.MODULE.bazel | New file extracting QNX and GCC toolchain configuration from main MODULE.bazel |
| score_modules.MODULE.bazel | Refactored to use versioned dependencies with single_version_override instead of git commits |
| patches/communication_changes.patch | Patch file fixing repository-qualified label issues and test file path resolution in communication module |
| patches/BUILD | Build file making patches directory a valid Bazel package |
| known_good.json | Updated module name from score-baselibs to score_baselibs |
| integration_test.sh | Updated module references and simplified build logic by removing persistency-specific flags |
| README.md | Updated all module references and command examples to use new naming convention |
| MODULE.bazel | Streamlined by moving toolchain configs to separate file and relocating Python setup |
| .github/workflows/test_integration.yml | Added disk cleanup steps and reorganized workflow structure |
| .bazelrc | Updated module references in build flags to new naming convention |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
|
||
| #gcc toolchain for baselibs | ||
| bazel_dep(name = "score_toolchains_gcc", version = "0.5", dev_dependency = False) | ||
| gcc = use_extension("@score_toolchains_gcc//extentions:gcc.bzl", "gcc", dev_dependency = False) |
There was a problem hiding this comment.
Corrected spelling of 'extentions' to 'extensions'.
Suggested change
| gcc = use_extension("@score_toolchains_gcc//extentions:gcc.bzl", "gcc", dev_dependency = False) | |
| gcc = use_extension("@score_toolchains_gcc//extensions:gcc.bzl", "gcc", dev_dependency = False) |
evinoth1206
reviewed
Nov 7, 2025
known_good.json
Outdated
| { | ||
| "name": "score-baselibs", | ||
| "name": "score_baselibs", | ||
| "hash": "5b3a469d80c6480f633ffc789ffb1277ee89fd7f", |
evinoth1206
approved these changes
Nov 7, 2025
Member
nicu1989
reviewed
Nov 10, 2025
0279d44 to
a1f3422
Compare
AlexanderLanin
approved these changes
Nov 10, 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.
No description provided.