Skip to content
Open
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 .bazelrc
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ build:_common --extra_toolchains=@score_toolchains_rust//toolchains/ferrocene:fe
build:_common --features=minimal_warnings --features=-strict_warnings --features=warnings_as_errors

# Common flags for all builds
common --@score_baselibs//score/memory/shared/flags:use_typedshmd=False
common --@score_communication//score/memory/shared/flags:use_typedshmd=False
common --@score_baselibs//score/mw/log/flags:KRemote_Logging=False
common --@score_baselibs//score/json:base_library=nlohmann
common --//score/datarouter/build_configuration_flags:persistent_config_feature_enabled=False
Expand Down
15 changes: 13 additions & 2 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,19 @@ python.toolchain(

bazel_dep(name = "googletest", version = "1.17.0.bcr.2")
bazel_dep(name = "rapidjson", version = "1.1.0.bcr.20241007")
bazel_dep(name = "score_baselibs", version = "0.2.10")
bazel_dep(name = "score_communication", version = "0.2.1")
bazel_dep(name = "score_baselibs", version = "0.2.11")
bazel_dep(name = "score_communication", version = "0.3.0")

# score_baselibs 0.2.11 migrated score/memory/shared (incl. the use_typedshmd
# flag) to score_communication, but no released score_communication version
# contains it yet. Pin to a commit on main that has the migration until a new
# score_communication release is cut.
# TODO: Remove once a score_communication release >0.3.0 is available.
git_override(
module_name = "score_communication",
commit = "e83ad9b74488ccd3a8ba3cf7edb550799e6b782d",
remote = "https://github.com/eclipse-score/communication.git",
)

# Rust dependencies

Expand Down
33 changes: 18 additions & 15 deletions MODULE.bazel.lock

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

Loading