Skip to content

Commit 1a41ba3

Browse files
committed
update modules to latest mains
1 parent d3808b4 commit 1a41ba3

File tree

7 files changed

+559
-21
lines changed

7 files changed

+559
-21
lines changed

.github/workflows/test_integration.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,14 @@ jobs:
5353
repository-cache: true
5454
- name: Bazel build targets
5555
run: |
56+
echo "::group::get latest commits from main branches"
57+
python3 tools/update_module_latest.py --output known_good.updated.json
58+
cat known_good.updated.json
59+
echo "::endgroup::"
60+
echo "::group::update score_modules.MODULE.bazel"
61+
python3 tools/update_module_from_known_good.py --known known_good.updated.json
62+
cat score_modules.MODULE.bazel
63+
echo "::endgroup::"
5664
./integration_test.sh
5765
- name: Show disk space after build
5866
if: always()

known_good.json

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
{
2+
"timestamp": "2025-08-13T12:55:10Z",
3+
"modules": [
4+
{
5+
"name": "score_baselibs",
6+
"version": "0.1.3",
7+
"repo": "https://github.com/eclipse-score/baselibs.git"
8+
},
9+
{
10+
"name": "score_communication",
11+
"version": "0.1.1",
12+
"repo": "https://github.com/eclipse-score/communication.git"
13+
},
14+
{
15+
"name": "score_persistency",
16+
"version": "0.2.1",
17+
"repo": "https://github.com/eclipse-score/persistency.git"
18+
},
19+
{
20+
"name": "score_orchestrator",
21+
"version": "0.0.3",
22+
"repo": "https://github.com/eclipse-score/orchestrator.git"
23+
},
24+
{
25+
"name": "score_tooling",
26+
"version": "1.0.2",
27+
"repo": "https://github.com/eclipse-score/tooling.git"
28+
},
29+
{
30+
"name": "score_platform",
31+
"hash": "a9cf44be1342f3c62111de2249eb3132f5ab88da",
32+
"repo": "https://github.com/eclipse-score/score.git"
33+
},
34+
{
35+
"name": "score_bazel_platforms",
36+
"version": "0.0.2",
37+
"repo": "https://github.com/eclipse-score/bazel_platforms.git"
38+
},
39+
{
40+
"name": "score_test_scenarios",
41+
"version": "0.3.0",
42+
"repo": "https://github.com/eclipse-score/testing_tools.git"
43+
},
44+
{
45+
"name": "score_docs_as_code",
46+
"version": "2.0.1",
47+
"repo": "https://github.com/eclipse-score/docs-as-code.git"
48+
},
49+
{
50+
"name": "score_process",
51+
"version": "1.3.1",
52+
"repo": "https://github.com/eclipse-score/process_description.git"
53+
}
54+
],
55+
"manifest_sha256": "4c9b7f...",
56+
"suite": "full",
57+
"duration_s": 742
58+
}

known_good.updated.json

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
{
2+
"timestamp": "2025-11-12T10:56:14Z",
3+
"modules": [
4+
{
5+
"name": "score_baselibs",
6+
"repo": "https://github.com/eclipse-score/baselibs.git",
7+
"hash": "18badf00dc2210d11ef310049a78644ff3d039a3"
8+
},
9+
{
10+
"name": "score_communication",
11+
"repo": "https://github.com/eclipse-score/communication.git",
12+
"hash": "ff40e5f1e90ce406b71c664cc6c8e902ab465305"
13+
},
14+
{
15+
"name": "score_persistency",
16+
"repo": "https://github.com/eclipse-score/persistency.git",
17+
"hash": "7548876ed3e40ec3f3053c57634de68129287e05"
18+
},
19+
{
20+
"name": "score_orchestrator",
21+
"repo": "https://github.com/eclipse-score/orchestrator.git",
22+
"hash": "7bb94ebae08805ea0a83dcc14f7c17da5ab927e6"
23+
},
24+
{
25+
"name": "score_tooling",
26+
"repo": "https://github.com/eclipse-score/tooling.git",
27+
"hash": "f36904e8c3d06c0ee761b14877ce7e5f6d3d9edb"
28+
},
29+
{
30+
"name": "score_platform",
31+
"repo": "https://github.com/eclipse-score/score.git",
32+
"hash": "6e2a756c5c52a6587a3c8da74126523fe1ca9336"
33+
},
34+
{
35+
"name": "score_bazel_platforms",
36+
"repo": "https://github.com/eclipse-score/bazel_platforms.git",
37+
"hash": "0115193f958e8e592168df1e29cf86174bdba761"
38+
},
39+
{
40+
"name": "score_test_scenarios",
41+
"repo": "https://github.com/eclipse-score/testing_tools.git",
42+
"hash": "a2f9cded3deb636f5dc800bf7a47131487119721"
43+
},
44+
{
45+
"name": "score_docs_as_code",
46+
"repo": "https://github.com/eclipse-score/docs-as-code.git",
47+
"hash": "1067fb67782389b50827f8637a74b1027ece52ee"
48+
},
49+
{
50+
"name": "score_process",
51+
"repo": "https://github.com/eclipse-score/process_description.git",
52+
"hash": "ea78e6d616adf1f13236c31479a31db813086a77"
53+
}
54+
],
55+
"manifest_sha256": "4c9b7f...",
56+
"suite": "full",
57+
"duration_s": 742
58+
}

score_modules.MODULE.bazel

Lines changed: 32 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -11,34 +11,42 @@
1111
# SPDX-License-Identifier: Apache-2.0
1212
# *******************************************************************************
1313

14+
# Generated from known_good.json at 2025-11-12T10:20:19Z
15+
# Do not edit manually - use tools/update_module_from_known_good.py
16+
1417
bazel_dep(name = "score_baselibs")
15-
single_version_override(
18+
git_override(
1619
module_name = "score_baselibs",
17-
version = "0.1.3",
20+
remote = "https://github.com/eclipse-score/baselibs.git",
21+
commit = "edc4f8841c2210d11ef310049a78644ff3d039a3",
1822
)
1923

2024
bazel_dep(name = "score_communication")
21-
single_version_override(
25+
git_override(
2226
module_name = "score_communication",
23-
version = "0.1.1",
27+
remote = "https://github.com/eclipse-score/communication.git",
28+
commit = "ff40e5f1e90ce406b71c664cc6c8e902ab465305",
2429
)
2530

2631
bazel_dep(name = "score_persistency")
27-
single_version_override(
32+
git_override(
2833
module_name = "score_persistency",
29-
version = "0.2.1",
34+
remote = "https://github.com/eclipse-score/persistency.git",
35+
commit = "7548876ed3e40ec3f3053c57634de68129287e05",
3036
)
3137

3238
bazel_dep(name = "score_orchestrator")
33-
single_version_override(
39+
git_override(
3440
module_name = "score_orchestrator",
35-
version = "0.0.3",
41+
remote = "https://github.com/eclipse-score/orchestrator.git",
42+
commit = "7bb94ebae08805ea0a83dcc14f7c17da5ab927e6",
3643
)
3744

3845
bazel_dep(name = "score_tooling")
39-
single_version_override(
46+
git_override(
4047
module_name = "score_tooling",
41-
version = "1.0.2",
48+
remote = "https://github.com/eclipse-score/tooling.git",
49+
commit = "b3a120a36c7a0e1b82d151732961af3330922e20",
4250
)
4351

4452
bazel_dep(name = "score_platform")
@@ -48,28 +56,31 @@ single_version_override(
4856
)
4957

5058
bazel_dep(name = "score_bazel_platforms")
51-
single_version_override(
59+
git_override(
5260
module_name = "score_bazel_platforms",
53-
version = "0.0.2",
61+
remote = "https://github.com/eclipse-score/bazel_platforms.git",
62+
commit = "0115193f958e8e592168df1e29cf86174bdba761",
5463
)
5564

5665
bazel_dep(name = "score_test_scenarios")
57-
single_version_override(
66+
git_override(
5867
module_name = "score_test_scenarios",
59-
version = "0.3.0",
68+
remote = "https://github.com/eclipse-score/testing_tools.git",
69+
commit = "a2f9cded3deb636f5dc800bf7a47131487119721",
6070
)
6171

62-
bazel_dep(name = "score_docs_as_code", version = "2.0.1")
63-
single_version_override(
72+
bazel_dep(name = "score_docs_as_code")
73+
git_override(
6474
module_name = "score_docs_as_code",
65-
version = "2.0.1",
75+
remote = "https://github.com/eclipse-score/docs-as-code.git",
76+
commit = "bb52c96dd98799bdce68c166ad3b826f017f7cf6",
6677
)
6778

68-
69-
bazel_dep(name = "score_process", version = "1.3.1")
70-
single_version_override(
79+
bazel_dep(name = "score_process")
80+
git_override(
7181
module_name = "score_process",
72-
version = "1.3.1",
82+
remote = "https://github.com/eclipse-score/process_description.git",
83+
commit = "ea78e6d616adf1f13236c31479a31db813086a77",
7384
)
7485

7586
bazel_dep(name = "score_feo", version = "1.0.2")

tools/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
PyGithub>=2.1.1

0 commit comments

Comments
 (0)