Skip to content
Merged
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
12 changes: 6 additions & 6 deletions known_good.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
"timestamp": "2025-08-13T12:55:10Z",
"modules": {
"score_baselibs": {
"version": "0.1.3",
"hash": "9457533471c8f0d4a1bb9435e91ff12c62d19c7c",
"version": "0.2.2",
"hash": "3c65b223e9f516f95935bb4cd2e83d6088ca016f",
"repo": "https://github.com/eclipse-score/baselibs.git",
"branch": "s_core_release_v0_5_0"
},
"score_communication": {
"version": "0.1.1",
"version": "0.1.2",
"repo": "https://github.com/eclipse-score/communication.git",
"hash": "24d6e8916b89dbb405eae0b082348645d190dc18",
"hash": "d5414f75bfd4fc116572091ccca305d9e4b39338",
"branch": "s_core_release_v0_5_0"
},
"score_persistency": {
Expand Down Expand Up @@ -43,8 +43,8 @@
"repo": "https://github.com/eclipse-score/score.git"
},
"score_bazel_platforms": {
"version": "0.0.2",
"hash": "0115193f958e8e592168df1e29cf86174bdba761",
"version": "0.0.3",
"hash": "c4813d5b65be9cec1d3a2b4d56cce2cf334fad27",
"repo": "https://github.com/eclipse-score/bazel_platforms.git"
},
"score_test_scenarios": {
Expand Down
14 changes: 11 additions & 3 deletions score_modules.MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,21 @@
bazel_dep(name = "score_baselibs")
single_version_override(
module_name = "score_baselibs",
version = "0.1.3"
version = "0.2.2"
)

bazel_dep(name = "score_communication")
single_version_override(
module_name = "score_communication",
version = "0.1.1",
version = "0.1.2",
)

# bazel_dep(name = "score_logging", dev_dependency = True)
# single_version_override(
# module_name = "score_logging",
# version = "0.0.3",
# )

bazel_dep(name = "score_persistency")
git_override(
module_name = "score_persistency",
Expand Down Expand Up @@ -58,7 +64,7 @@ git_override(
bazel_dep(name = "score_bazel_platforms")
single_version_override(
module_name = "score_bazel_platforms",
version = "0.0.2",
version = "0.0.3",
)

bazel_dep(name = "score_test_scenarios")
Expand All @@ -84,3 +90,5 @@ single_version_override(
module_name = "score_feo",
version = "1.0.2",
)

bazel_dep(name = "nlohmann_json", version = "3.11.3")

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

do we need it? If yes move to regular MODULE file, its not from score

10 changes: 8 additions & 2 deletions scripts/run_unit_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,14 @@ mkdir -p "${LOG_DIR}" || true
declare -A UT_TARGET_GROUPS=(
[baselibs]="@score_baselibs//score/... -- \
-@score_baselibs//score/language/safecpp/aborts_upon_exception:abortsuponexception_toolchain_test \
-@score_baselibs//score/containers:dynamic_array_test" # nok, error in @score_baselibs//score/json/examples:json_buffer
[communication]="@score_communication//score/..." # nok, error from trlc in score_communication//score/mw/com/requirements/feature_requirements
-@score_baselibs//score/containers:dynamic_array_test \
-@score_baselibs//score/mw/log/configuration:* \
-@score_baselibs//score/json/examples:*"
[communication]="@score_communication//score/mw/com/impl/... -- \
-@score_communication//score/mw/com/impl:unit_test_runtime_single_exec \
-@score_communication//score/mw/com/impl/configuration:config_parser_test \
-@score_communication//score/mw/com/impl/configuration:configuration_test \
-@score_communication//score/mw/com/impl/tracing/configuration:tracing_filter_config_parser_test"
[persistency]="@score_persistency//:unit_tests" # ok
[orchestrator]="@score_orchestrator//src/..." # ok
[kyron]="@score_kyron//:unit_tests" # ok
Expand Down
Loading