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..d82f02b0f6 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": "4a9928d74847ed9e4f346836c3a8ac7ea75f1851" } }, "timestamp": "2026-01-26T11:01:36+00:00Z" diff --git a/score_modules.MODULE.bazel b/score_modules.MODULE.bazel index 7be01d5c79..93a4fb3c0b 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 = "4a9928d74847ed9e4f346836c3a8ac7ea75f1851", +)