Skip to content

Commit f3644b6

Browse files
authored
add kryon to known_good and score_modules (#51)
also disabled not working builds in feo
1 parent e2aabe8 commit f3644b6

File tree

3 files changed

+28
-8
lines changed

3 files changed

+28
-8
lines changed

integration_test.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ declare -A BUILD_TARGET_GROUPS=(
2020
#[score_logging]="@score_logging//src/..."
2121
[score_orchestrator]="@score_orchestrator//src/..."
2222
[score_test_scenarios]="@score_test_scenarios//..."
23-
[score_feo]="@score_feo//..."
23+
[score_feo]="-- @score_feo//... -@score_feo//:docs -@score_feo//:ide_support -@score_feo//:needs_json"
2424
)
2525

2626
# Parse command line arguments
@@ -115,11 +115,11 @@ for group in "${!BUILD_TARGET_GROUPS[@]}"; do
115115
# Log build group banner only to stdout/stderr (not into summary table file)
116116
echo "--- Building group: ${group} ---"
117117
start_ts=$(date +%s)
118-
echo "bazel build --config "${CONFIG}" ${targets} --verbose_failures"
118+
echo "bazel build --verbose_failures --config "${CONFIG}" ${targets}"
119119
# GitHub Actions log grouping start
120120
echo "::group::Bazel build (${group})"
121121
set +e
122-
bazel build --config "${CONFIG}" ${targets} --verbose_failures 2>&1 | tee "$log_file"
122+
bazel build --verbose_failures --config "${CONFIG}" ${targets} 2>&1 | tee "$log_file"
123123
build_status=${PIPESTATUS[0]}
124124
# Track if any build group failed
125125
if [[ ${build_status} -ne 0 ]]; then

known_good.json

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,39 @@
33
"modules": {
44
"score_baselibs": {
55
"version": "0.1.3",
6+
"hash": "9457533471c8f0d4a1bb9435e91ff12c62d19c7c",
67
"repo": "https://github.com/eclipse-score/baselibs.git",
78
"branch": "s_core_release_v0_5_0"
89
},
910
"score_communication": {
1011
"version": "0.1.1",
1112
"repo": "https://github.com/eclipse-score/communication.git",
13+
"hash": "24d6e8916b89dbb405eae0b082348645d190dc18",
1214
"branch": "s_core_release_v0_5_0"
1315
},
1416
"score_persistency": {
1517
"version": "0.2.1",
18+
"hash": "7548876ed3e40ec3f3053c57634de68129287e05",
1619
"repo": "https://github.com/eclipse-score/persistency.git"
1720
},
1821
"score_orchestrator": {
1922
"version": "0.0.3",
23+
"hash": "7bb94ebae08805ea0a83dcc14f7c17da5ab927e6",
2024
"repo": "https://github.com/eclipse-score/orchestrator.git"
2125
},
26+
"score_kyron": {
27+
"hash": "caa9c0b367d18a09e969c1353e95a8c443ae896b",
28+
"repo": "https://github.com/eclipse-score/kyron.git"
29+
},
30+
"score_feo": {
31+
"version": "1.0.2",
32+
"hash": "4841281ab81aad114cfc86a19a69c029a274f28d",
33+
"repo": "https://github.com/eclipse-score/feo.git",
34+
"branch": "candidate_v0.5"
35+
},
2236
"score_tooling": {
2337
"version": "1.0.2",
38+
"hash": "64f81aaf9378e93be5209e52bf1bd149d6d7727f",
2439
"repo": "https://github.com/eclipse-score/tooling.git"
2540
},
2641
"score_platform": {
@@ -29,24 +44,23 @@
2944
},
3045
"score_bazel_platforms": {
3146
"version": "0.0.2",
47+
"hash": "0115193f958e8e592168df1e29cf86174bdba761",
3248
"repo": "https://github.com/eclipse-score/bazel_platforms.git"
3349
},
3450
"score_test_scenarios": {
3551
"version": "0.3.0",
52+
"hash": "a2f9cded3deb636f5dc800bf7a47131487119721",
3653
"repo": "https://github.com/eclipse-score/testing_tools.git"
3754
},
3855
"score_docs_as_code": {
3956
"version": "2.0.1",
57+
"hash": "bb52c96dd98799bdce68c166ad3b826f017f7cf6",
4058
"repo": "https://github.com/eclipse-score/docs-as-code.git"
4159
},
4260
"score_process": {
4361
"version": "1.3.1",
62+
"hash": "270e0ed0a2e560340f02b2f7046752cc937fe251",
4463
"repo": "https://github.com/eclipse-score/process_description.git"
45-
},
46-
"score_feo": {
47-
"version": "1.0.2",
48-
"repo": "https://github.com/eclipse-score/feo.git",
49-
"branch": "candidate_v0.5"
5064
}
5165
},
5266
"manifest_sha256": "4c9b7f...",

score_modules.MODULE.bazel

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,3 +77,9 @@ single_version_override(
7777
version = "1.0.2",
7878
)
7979

80+
bazel_dep(name = "score_kyron")
81+
git_override(
82+
module_name = "score_kyron",
83+
remote = "https://github.com/eclipse-score/kyron.git",
84+
commit = "c5837ac6612a5ebf91cd016775f2d3ee85ed6892",
85+
)

0 commit comments

Comments
 (0)