From 719ef11502c80d5ffa189c597a20913258e6a44b Mon Sep 17 00:00:00 2001 From: Piotr Korkus Date: Thu, 12 Feb 2026 08:51:10 +0100 Subject: [PATCH] bazel: update score modules --- integration/.bazelrc | 1 - .../bazel_common/score_modules.MODULE.bazel | 52 +++++++++++-------- 2 files changed, 29 insertions(+), 24 deletions(-) diff --git a/integration/.bazelrc b/integration/.bazelrc index f03197f6ef..aec75c2b12 100644 --- a/integration/.bazelrc +++ b/integration/.bazelrc @@ -3,7 +3,6 @@ common --registry=https://bcr.bazel.build common --credential_helper=*.qnx.com=%workspace%/scripts/qnx_credential_helper.py common --credential_helper_timeout="60s" -build:_common --@score_baselibs//score/mw/log/detail/flags:KUse_Stub_Implementation_Only=False build:_common --@score_baselibs//score/mw/log/flags:KRemote_Logging=False build:_common --@score_baselibs//score/json:base_library=nlohmann build:_common --@score_baselibs//score/memory/shared/flags:use_typedshmd=False diff --git a/integration/bazel_common/score_modules.MODULE.bazel b/integration/bazel_common/score_modules.MODULE.bazel index 1d665001d3..e698d4295f 100644 --- a/integration/bazel_common/score_modules.MODULE.bazel +++ b/integration/bazel_common/score_modules.MODULE.bazel @@ -1,43 +1,49 @@ -bazel_dep(name = "score_baselibs", version = "0.1.3") +bazel_dep(name = "score_baselibs") +git_override( + module_name = "score_baselibs", + remote = "https://github.com/eclipse-score/baselibs.git", + commit = "ffd1c812213c66a436ed982632f6942528b58be8", + patch_strip = 1, + patches = [ + "//patches/baselibs:0001-fixes-for-aarch64.patch", + ], +) + bazel_dep(name = "score_communication", version = "0.1.1",) # EB needs 0.1.2 but others does not work with it -bazel_dep(name = "score_persistency", version = "0.2.1") +bazel_dep(name = "score_persistency") +git_override( + module_name = "score_persistency", + remote = "https://github.com/eclipse-score/persistency.git", + commit = "4497cbbb3beb3af9a3ff9438959c82f754fe54db", +) bazel_dep(name = "score_scrample", version = "0.1.0") +git_override( + module_name = "score_scrample", + remote = "https://github.com/eclipse-score/scrample.git", + commit = "b49dc7cd50612322e2619f2d55fe13e67d2d93b8", +) + bazel_dep(name = "score_itf", version = "0.1.0") + bazel_dep(name = "score_orchestrator") git_override( module_name = "score_orchestrator", remote = "https://github.com/eclipse-score/orchestrator.git", - commit = "18e136c34750c5db707f27f917d52efc7541e087", + commit = "6702f8c4bcabcc8802e62f07cccfd862991b1f8e", ) bazel_dep(name = "score_kyron") git_override( module_name = "score_kyron", remote = "https://github.com/eclipse-score/kyron.git", - commit = "ed312bdc6a50abc73f97b8c7e2ad4726fed06e81", -) - -git_override( - module_name = "score_persistency", - remote = "https://github.com/eclipse-score/persistency.git", - commit = "0037034bf853e5f955f028fab54ed319fb0441c3", -) - - -single_version_override( - module_name = "score_baselibs", - version = "0.1.3", - patch_strip = 1, - patches = [ - "//patches/baselibs:003-acl-fixes-for-aarch64.patch", - "//patches/baselibs:0001-RH-exception-header.patch", - "//patches/baselibs:0002-RH-algorithm-header.patch", - ], + commit = "1da4672285a35d8e8a76c929b26531ea5e98fb96", ) bazel_dep(name = "score_lifecycle_health") git_override( module_name = "score_lifecycle_health", - commit = "84303c2e48c7e8e2481752170efe82d0afd45f1e", + commit = "e67583b33bae79677b3c70aa79adfc4b6820fc87", remote = "https://github.com/eclipse-score/lifecycle.git", ) + +bazel_dep(name = "score_baselibs_rust", version = "0.1.0")