Skip to content
Merged
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
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down
3 changes: 3 additions & 0 deletions build_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
},
"score_logging": {
"build_targets": "@score_logging//score/mw/log"
},
"score_lifecycle_health": {
"build_targets": "@score_lifecycle_health//src/..."
}
}
}
4 changes: 4 additions & 0 deletions known_good.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
7 changes: 7 additions & 0 deletions score_modules.MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -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",
)