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
6 changes: 3 additions & 3 deletions integration_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ declare -A BUILD_TARGET_GROUPS=(
#[score_logging]="@score_logging//src/..."
[score_orchestrator]="@score_orchestrator//src/..."
[score_test_scenarios]="@score_test_scenarios//..."
[score_feo]="@score_feo//..."
[score_feo]="-- @score_feo//... -@score_feo//:docs -@score_feo//:ide_support -@score_feo//:needs_json"

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why do we build ide_support and docs as part of integration? It should be only the feature itself, isnt it?

)

# Parse command line arguments
Expand Down Expand Up @@ -115,11 +115,11 @@ for group in "${!BUILD_TARGET_GROUPS[@]}"; do
# Log build group banner only to stdout/stderr (not into summary table file)
echo "--- Building group: ${group} ---"
start_ts=$(date +%s)
echo "bazel build --config "${CONFIG}" ${targets} --verbose_failures"
echo "bazel build --verbose_failures --config "${CONFIG}" ${targets}"
# GitHub Actions log grouping start
echo "::group::Bazel build (${group})"
set +e
bazel build --config "${CONFIG}" ${targets} --verbose_failures 2>&1 | tee "$log_file"
bazel build --verbose_failures --config "${CONFIG}" ${targets} 2>&1 | tee "$log_file"
build_status=${PIPESTATUS[0]}
# Track if any build group failed
if [[ ${build_status} -ne 0 ]]; then
Expand Down
24 changes: 19 additions & 5 deletions known_good.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,39 @@
"modules": {
"score_baselibs": {
"version": "0.1.3",
"hash": "9457533471c8f0d4a1bb9435e91ff12c62d19c7c",
"repo": "https://github.com/eclipse-score/baselibs.git",
"branch": "s_core_release_v0_5_0"
},
"score_communication": {
"version": "0.1.1",
"repo": "https://github.com/eclipse-score/communication.git",
"hash": "24d6e8916b89dbb405eae0b082348645d190dc18",
"branch": "s_core_release_v0_5_0"
},
"score_persistency": {
"version": "0.2.1",
"hash": "7548876ed3e40ec3f3053c57634de68129287e05",
"repo": "https://github.com/eclipse-score/persistency.git"
},
"score_orchestrator": {
"version": "0.0.3",
"hash": "7bb94ebae08805ea0a83dcc14f7c17da5ab927e6",
"repo": "https://github.com/eclipse-score/orchestrator.git"
},
"score_kyron": {
"hash": "caa9c0b367d18a09e969c1353e95a8c443ae896b",
"repo": "https://github.com/eclipse-score/kyron.git"
},
"score_feo": {
"version": "1.0.2",
"hash": "4841281ab81aad114cfc86a19a69c029a274f28d",
"repo": "https://github.com/eclipse-score/feo.git",
"branch": "candidate_v0.5"
},
"score_tooling": {
"version": "1.0.2",
"hash": "64f81aaf9378e93be5209e52bf1bd149d6d7727f",
"repo": "https://github.com/eclipse-score/tooling.git"
},
"score_platform": {
Expand All @@ -29,24 +44,23 @@
},
"score_bazel_platforms": {
"version": "0.0.2",
"hash": "0115193f958e8e592168df1e29cf86174bdba761",
"repo": "https://github.com/eclipse-score/bazel_platforms.git"
},
"score_test_scenarios": {
"version": "0.3.0",
"hash": "a2f9cded3deb636f5dc800bf7a47131487119721",
"repo": "https://github.com/eclipse-score/testing_tools.git"
},
"score_docs_as_code": {
"version": "2.0.1",
"hash": "bb52c96dd98799bdce68c166ad3b826f017f7cf6",
"repo": "https://github.com/eclipse-score/docs-as-code.git"
},
"score_process": {
"version": "1.3.1",
"hash": "270e0ed0a2e560340f02b2f7046752cc937fe251",
"repo": "https://github.com/eclipse-score/process_description.git"
},
"score_feo": {
"version": "1.0.2",
"repo": "https://github.com/eclipse-score/feo.git",
"branch": "candidate_v0.5"
}
},
"manifest_sha256": "4c9b7f...",
Expand Down
6 changes: 6 additions & 0 deletions score_modules.MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -77,3 +77,9 @@ single_version_override(
version = "1.0.2",
)

bazel_dep(name = "score_kyron")
git_override(
module_name = "score_kyron",
remote = "https://github.com/eclipse-score/kyron.git",
commit = "c5837ac6612a5ebf91cd016775f2d3ee85ed6892",
)
Loading