Skip to content

Commit 43773c0

Browse files
authored
update reference to baselibs and communication (#58)
1 parent 709aaaa commit 43773c0

File tree

3 files changed

+25
-11
lines changed

3 files changed

+25
-11
lines changed

known_good.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
"timestamp": "2025-08-13T12:55:10Z",
33
"modules": {
44
"score_baselibs": {
5-
"version": "0.1.3",
6-
"hash": "9457533471c8f0d4a1bb9435e91ff12c62d19c7c",
5+
"version": "0.2.2",
6+
"hash": "3c65b223e9f516f95935bb4cd2e83d6088ca016f",
77
"repo": "https://github.com/eclipse-score/baselibs.git",
88
"branch": "s_core_release_v0_5_0"
99
},
1010
"score_communication": {
11-
"version": "0.1.1",
11+
"version": "0.1.2",
1212
"repo": "https://github.com/eclipse-score/communication.git",
13-
"hash": "24d6e8916b89dbb405eae0b082348645d190dc18",
13+
"hash": "d5414f75bfd4fc116572091ccca305d9e4b39338",
1414
"branch": "s_core_release_v0_5_0"
1515
},
1616
"score_persistency": {
@@ -43,8 +43,8 @@
4343
"repo": "https://github.com/eclipse-score/score.git"
4444
},
4545
"score_bazel_platforms": {
46-
"version": "0.0.2",
47-
"hash": "0115193f958e8e592168df1e29cf86174bdba761",
46+
"version": "0.0.3",
47+
"hash": "c4813d5b65be9cec1d3a2b4d56cce2cf334fad27",
4848
"repo": "https://github.com/eclipse-score/bazel_platforms.git"
4949
},
5050
"score_test_scenarios": {

score_modules.MODULE.bazel

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,21 @@
1414
bazel_dep(name = "score_baselibs")
1515
single_version_override(
1616
module_name = "score_baselibs",
17-
version = "0.1.3"
17+
version = "0.2.2"
1818
)
1919

2020
bazel_dep(name = "score_communication")
2121
single_version_override(
2222
module_name = "score_communication",
23-
version = "0.1.1",
23+
version = "0.1.2",
2424
)
2525

26+
# bazel_dep(name = "score_logging", dev_dependency = True)
27+
# single_version_override(
28+
# module_name = "score_logging",
29+
# version = "0.0.3",
30+
# )
31+
2632
bazel_dep(name = "score_persistency")
2733
git_override(
2834
module_name = "score_persistency",
@@ -58,7 +64,7 @@ git_override(
5864
bazel_dep(name = "score_bazel_platforms")
5965
single_version_override(
6066
module_name = "score_bazel_platforms",
61-
version = "0.0.2",
67+
version = "0.0.3",
6268
)
6369

6470
bazel_dep(name = "score_test_scenarios")
@@ -84,3 +90,5 @@ single_version_override(
8490
module_name = "score_feo",
8591
version = "1.0.2",
8692
)
93+
94+
bazel_dep(name = "nlohmann_json", version = "3.11.3")

scripts/run_unit_tests.sh

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,14 @@ mkdir -p "${LOG_DIR}" || true
1111
declare -A UT_TARGET_GROUPS=(
1212
[baselibs]="@score_baselibs//score/... -- \
1313
-@score_baselibs//score/language/safecpp/aborts_upon_exception:abortsuponexception_toolchain_test \
14-
-@score_baselibs//score/containers:dynamic_array_test" # nok, error in @score_baselibs//score/json/examples:json_buffer
15-
[communication]="@score_communication//score/..." # nok, error from trlc in score_communication//score/mw/com/requirements/feature_requirements
14+
-@score_baselibs//score/containers:dynamic_array_test \
15+
-@score_baselibs//score/mw/log/configuration:* \
16+
-@score_baselibs//score/json/examples:*"
17+
[communication]="@score_communication//score/mw/com/impl/... -- \
18+
-@score_communication//score/mw/com/impl:unit_test_runtime_single_exec \
19+
-@score_communication//score/mw/com/impl/configuration:config_parser_test \
20+
-@score_communication//score/mw/com/impl/configuration:configuration_test \
21+
-@score_communication//score/mw/com/impl/tracing/configuration:tracing_filter_config_parser_test"
1622
[persistency]="@score_persistency//:unit_tests" # ok
1723
[orchestrator]="@score_orchestrator//src/..." # ok
1824
[kyron]="@score_kyron//:unit_tests" # ok

0 commit comments

Comments
 (0)