From b9d916e2735170a73fa7d81f1495cf6536af806d Mon Sep 17 00:00:00 2001 From: Kai Graeper Date: Mon, 2 Feb 2026 15:28:35 +0100 Subject: [PATCH 1/2] add lifecycle to build --- README.md | 7 +++++++ build_config.json | 3 +++ known_good.json | 4 ++++ score_modules.MODULE.bazel | 7 +++++++ 4 files changed, 21 insertions(+) diff --git a/README.md b/README.md index a2b1b59224..796e2e3855 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,13 @@ bazel build --config x86_64-linux \ bazel build --config x86_64-linux @score_orchestrator//src/... ``` +### Lifecycle + +```bash +bazel build --config x86_64-linux @score_lifecycle_health//src/... --verbose_failures +``` + + ## Feature showcase examples The examples that are aiming to showcase features provided by S-CORE are located in `feature_showcase` folder. You can run them currently for host platform using `--config x86_64-linux`. diff --git a/build_config.json b/build_config.json index c7fd8cd99a..7c06c59dbb 100644 --- a/build_config.json +++ b/build_config.json @@ -23,6 +23,9 @@ }, "score_logging": { "build_targets": "@score_logging//score/mw/log" + }, + "score_lifecycle_health": { + "build_targets": "@score_lifecycle_health//src/..." } } } diff --git a/known_good.json b/known_good.json index 5d0bf111bf..280d595cce 100644 --- a/known_good.json +++ b/known_good.json @@ -52,6 +52,10 @@ "score_process": { "repo": "https://github.com/eclipse-score/process_description.git", "hash": "496fb6dc347de414d9cbe7523204fdeb6b511197" + }, + "score_lifecycle_health": { + "repo": "https://github.com/eclipse-score/lifecycle.git", + "hash": "c7d58e953342ce87a7b9f1d389447dafe9001307" } }, "timestamp": "2026-01-26T11:01:36+00:00Z" diff --git a/score_modules.MODULE.bazel b/score_modules.MODULE.bazel index 7be01d5c79..fceebcf8ea 100644 --- a/score_modules.MODULE.bazel +++ b/score_modules.MODULE.bazel @@ -104,3 +104,10 @@ git_override( remote = "https://github.com/eclipse-score/process_description.git", commit = "496fb6dc347de414d9cbe7523204fdeb6b511197", ) + +bazel_dep(name = "score_lifecycle_health") +git_override( + module_name = "score_lifecycle_health", + remote = "https://github.com/eclipse-score/lifecycle.git", + commit = "c7d58e953342ce87a7b9f1d389447dafe9001307", +) From 8949f3f98edf5a8a193020fec71848392cc08ea4 Mon Sep 17 00:00:00 2001 From: Maciej Kaszynski Date: Wed, 4 Feb 2026 15:32:06 +0000 Subject: [PATCH 2/2] Adding first working lifecycle commit --- known_good.json | 2 +- score_modules.MODULE.bazel | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/known_good.json b/known_good.json index 280d595cce..d82f02b0f6 100644 --- a/known_good.json +++ b/known_good.json @@ -55,7 +55,7 @@ }, "score_lifecycle_health": { "repo": "https://github.com/eclipse-score/lifecycle.git", - "hash": "c7d58e953342ce87a7b9f1d389447dafe9001307" + "hash": "4a9928d74847ed9e4f346836c3a8ac7ea75f1851" } }, "timestamp": "2026-01-26T11:01:36+00:00Z" diff --git a/score_modules.MODULE.bazel b/score_modules.MODULE.bazel index fceebcf8ea..93a4fb3c0b 100644 --- a/score_modules.MODULE.bazel +++ b/score_modules.MODULE.bazel @@ -109,5 +109,5 @@ bazel_dep(name = "score_lifecycle_health") git_override( module_name = "score_lifecycle_health", remote = "https://github.com/eclipse-score/lifecycle.git", - commit = "c7d58e953342ce87a7b9f1d389447dafe9001307", + commit = "4a9928d74847ed9e4f346836c3a8ac7ea75f1851", )