Skip to content

Commit 373a22a

Browse files
committed
add logging to igate
1 parent f43fcba commit 373a22a

File tree

4 files changed

+16
-8
lines changed

4 files changed

+16
-8
lines changed

known_good.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@
1313
"hash": "d5414f75bfd4fc116572091ccca305d9e4b39338",
1414
"branch": "s_core_release_v0_5_0"
1515
},
16+
"score_logging": {
17+
"version": "0.0.4",
18+
"repo": "https://github.com/eclipse-score/logging.git",
19+
"hash": "b79340b9e3e9007372d0f9611c6087a0d4e4b67b",
20+
"branch": "ankr_score_05_beta"
21+
},
1622
"score_persistency": {
1723
"version": "0.2.1",
1824
"hash": "7548876ed3e40ec3f3053c57634de68129287e05",
@@ -66,4 +72,4 @@
6672
"manifest_sha256": "4c9b7f...",
6773
"suite": "full",
6874
"duration_s": 742
69-
}
75+
}

score_modules.MODULE.bazel

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ single_version_override(
2323
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-
# )
26+
bazel_dep(name = "score_logging")
27+
single_version_override(
28+
module_name = "score_logging",
29+
version = "0.0.4",
30+
)
3131

3232
bazel_dep(name = "score_persistency")
3333
git_override(
@@ -91,4 +91,4 @@ single_version_override(
9191
version = "1.0.2",
9292
)
9393

94-
bazel_dep(name = "nlohmann_json", version = "3.11.3")
94+
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)