Skip to content
Open
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
10 changes: 8 additions & 2 deletions .github/workflows/downstream_compatibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,18 @@ jobs:
fail-fast: false
matrix:
consumer: [
"baselibs and remote",
"inc_security_crypto and remote",
"inc_someip_gateway and remote",
"infrastructure and remote",
"itf and remote",
"module_template and local",
"module_template and remote",
"persistency and remote",
"process_description and local",
"process_description and remote",
"score and local",
"score and remote",
"module_template and local",
"module_template and remote",
]

steps:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,17 +71,24 @@ def __init__(


REPOS_TO_TEST: list[ConsumerRepo] = [
ConsumerRepo(name="baselibs"),
ConsumerRepo(name="inc_security_crypto"),
ConsumerRepo(name="inc_someip_gateway"),
ConsumerRepo(name="infrastructure"),
ConsumerRepo(name="itf"),
ConsumerRepo(
name="process_description",
name="module_template",
commands=[
"bazel run //:ide_support",
"bazel run //:docs_check",
"bazel run //:docs",
"bazel build //:needs_json",
"bazel test //tests/...",
],
),
ConsumerRepo(name="persistency"),
ConsumerRepo(
name="score",
name="process_description",
commands=[
"bazel run //:ide_support",
"bazel run //:docs_check",
Expand All @@ -90,19 +97,14 @@ def __init__(
],
),
ConsumerRepo(
name="module_template",
name="score",
commands=[
"bazel run //:ide_support",
"bazel run //:docs_check",
"bazel run //:docs",
"bazel build //:needs_json",
"bazel test //tests/...",
],
),
ConsumerRepo(name="infrastructure"),
ConsumerRepo(name="itf"),
ConsumerRepo(name="baselibs"),
ConsumerRepo(name="inc_someip_gateway"),
]

# ---------------------------------------------------------------------------
Expand Down
Loading