Skip to content
Draft
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
2 changes: 1 addition & 1 deletion .github/workflows/coverage_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ jobs:
uses: eclipse-score/cicd-workflows/.github/workflows/cpp-coverage.yml@main
with:
bazel-target: "//..."
extra-bazel-flags: "--lockfile_mode=error"
extra-bazel-flags: "--lockfile_mode=error --test_tag_filters=-integration"
24 changes: 24 additions & 0 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,30 @@ bazel_dep(name = "rapidjson", version = "1.1.0")
bazel_dep(name = "score_baselibs", version = "0.2.7")
bazel_dep(name = "score_communication", version = "0.2.1")

# Integration test dependencies

bazel_dep(name = "score_itf", version = "0.4.0", dev_dependency = True)
git_override(
module_name = "score_itf",
commit = "98118b1fcd6c53244fb276e2c7668faaf15d2e10",
patch_strip = 1,
patches = ["//patches:score_itf_dlt_strict_warnings.patch"],
remote = "https://github.com/eclipse-score/itf.git",
)

bazel_dep(name = "rules_oci", version = "2.2.7", dev_dependency = True)
bazel_dep(name = "rules_pkg", version = "1.2.0", dev_dependency = True)

oci = use_extension("@rules_oci//oci:extensions.bzl", "oci", dev_dependency = True)
oci.pull(
name = "ubuntu_24_04",
digest = "sha256:2e863c44b718727c860746568e1d54afd13b2fa71b160f5cd9058fc436217b30",
image = "ubuntu",
platforms = ["linux/amd64"],
tag = "24.04",
)
use_repo(oci, "ubuntu_24_04", "ubuntu_24_04_linux_amd64")

# Rust dependencies

bazel_dep(name = "score_baselibs_rust", version = "0.1.0")
206 changes: 202 additions & 4 deletions MODULE.bazel.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions patches/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# *******************************************************************************
# Copyright (c) 2026 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Apache License Version 2.0 which is available at
# https://www.apache.org/licenses/LICENSE-2.0
#
# SPDX-License-Identifier: Apache-2.0
# *******************************************************************************

exports_files(["score_itf_dlt_strict_warnings.patch"])
31 changes: 31 additions & 0 deletions patches/score_itf_dlt_strict_warnings.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
--- a/third_party/dlt/custom/dlt_daemon.BUILD
+++ b/third_party/dlt/custom/dlt_daemon.BUILD
@@ -23,6 +23,15 @@ cc_library(
"src/daemon/dlt-daemon_cfg.h",
],
hdrs = glob(["include/**/*.h"]),
+ copts = [
+ "-Wno-address",
+ "-Wno-deprecated-declarations",
+ "-Wno-format",
+ "-Wno-format-nonliteral",
+ "-Wno-missing-prototypes",
+ "-Wno-stringop-truncation",
+ "-Wno-suggest-attribute=format",
+ ],
defines = [
"_GNU_SOURCE",
],
@@ -50,6 +59,12 @@ cc_binary(
cc_binary(
name = "dlt-receive",
srcs = ["src/console/dlt-receive.c"],
+ copts = [
+ "-Wno-format",
+ "-Wno-format-nonliteral",
+ "-Wno-missing-prototypes",
+ "-Wno-suggest-attribute=format",
+ ],
deps = [
":dlt-library",
],
12 changes: 12 additions & 0 deletions score/datarouter/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -370,6 +370,18 @@ filegroup(
],
)

filegroup(
name = "integration_config_files",
srcs = [
"etc/log-channels.json",
"etc/logging.json",
"etc/raw-channels.json",
],
visibility = [
"//score/test/integration:__subpackages__",
],
)

cc_library(
name = "datarouter_options",
srcs = [
Expand Down
1 change: 1 addition & 0 deletions score/mw/log/legacy_non_verbose_api/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ cc_library(
visibility = [
"//platform/aas/ara/log:__subpackages__",
"//score/mw/log:__subpackages__",
"//score/test/integration/filters:__pkg__",
"@score_baselibs//score/mw/log:__subpackages__",
"@score_logging//score/datarouter:__subpackages__",
],
Expand Down
Loading
Loading