Skip to content

Commit 5a911cf

Browse files
committed
add logging to igate
1 parent f43fcba commit 5a911cf

File tree

4 files changed

+20
-8
lines changed

4 files changed

+20
-8
lines changed

known_good.json

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,20 @@
33
"modules": {
44
"score_baselibs": {
55
"version": "0.2.2",
6-
"hash": "3c65b223e9f516f95935bb4cd2e83d6088ca016f",
6+
"hash": "d072b126faa8ce2b6eaad88c6375b210fe42a547",
77
"repo": "https://github.com/eclipse-score/baselibs.git",
8-
"branch": "s_core_release_v0_5_0"
8+
"branch": "release_v0_2_2"
99
},
1010
"score_communication": {
1111
"version": "0.1.2",
1212
"repo": "https://github.com/eclipse-score/communication.git",
13-
"hash": "d5414f75bfd4fc116572091ccca305d9e4b39338",
14-
"branch": "s_core_release_v0_5_0"
13+
"hash": "d5414f75bfd4fc116572091ccca305d9e4b39338"
14+
},
15+
"score_logging": {
16+
"version": "0.0.4",
17+
"repo": "https://github.com/eclipse-score/logging.git",
18+
"hash": "d3624d52151fcde9c8351867353a8baf59a269cd",
19+
"branch": "score_05_beta"
1520
},
1621
"score_persistency": {
1722
"version": "0.2.1",
@@ -66,4 +71,4 @@
6671
"manifest_sha256": "4c9b7f...",
6772
"suite": "full",
6873
"duration_s": 742
69-
}
74+
}

score_modules.MODULE.bazel

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,12 @@ single_version_override(
2323
version = "0.1.2",
2424
)
2525

26-
# bazel_dep(name = "score_logging", dev_dependency = True)
26+
bazel_dep(name = "score_logging")
27+
git_override(
28+
module_name = "score_logging",
29+
remote = "https://github.com/eclipse-score/logging.git",
30+
commit = "c98df05f123cb262187c226dc1042b7c1a9dedec",
31+
)
2732
# single_version_override(
2833
# module_name = "score_logging",
2934
# version = "0.0.3",
@@ -91,4 +96,4 @@ single_version_override(
9196
version = "1.0.2",
9297
)
9398

94-
bazel_dep(name = "nlohmann_json", version = "3.11.3")
99+
bazel_dep(name = "nlohmann_json", version = "3.11.3")

scripts/integration_test.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ KNOWN_GOOD_FILE=""
1616
declare -A BUILD_TARGET_GROUPS=(
1717
[score_baselibs]="@score_baselibs//score/..."
1818
[score_communication]="@score_communication//score/mw/com:com"
19+
[score_logging]="@score_logging//score/..."
1920
[score_persistency]="@score_persistency//src/cpp/src/... @score_persistency//src/rust/..."
2021
[score_kyron]="@score_kyron//src/..."
2122
[score_orchestrator]="@score_orchestrator//src/..."

scripts/run_unit_tests.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ declare -A UT_TARGET_GROUPS=(
1919
-@score_communication//score/mw/com/impl/configuration:config_parser_test \
2020
-@score_communication//score/mw/com/impl/configuration:configuration_test \
2121
-@score_communication//score/mw/com/impl/tracing/configuration:tracing_filter_config_parser_test"
22+
[logging]="@score_logging//score/..."
2223
[persistency]="@score_persistency//:unit_tests" # ok
2324
[orchestrator]="@score_orchestrator//src/..." # ok
2425
[kyron]="@score_kyron//:unit_tests" # ok
@@ -69,4 +70,4 @@ column -t -s $'\t' "${SUMMARY_FILE}" > "${SUMMARY_FILE}.tmp" && mv "${SUMMARY_FI
6970
if [[ $any_failed -ne 0 ]]; then
7071
echo "Some unit test groups failed. Exiting with non-zero status."
7172
exit 1
72-
fi
73+
fi

0 commit comments

Comments
 (0)