diff --git a/.github/workflows/downstream_compatibility.yml b/.github/workflows/downstream_compatibility.yml index c8a69dc58..103bcc453 100644 --- a/.github/workflows/downstream_compatibility.yml +++ b/.github/workflows/downstream_compatibility.yml @@ -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: diff --git a/src/tests/downstream_compatibility/test_downstream_compatibility.py b/src/tests/downstream_compatibility/test_downstream_compatibility.py index d22cb77dd..4fe9e123f 100644 --- a/src/tests/downstream_compatibility/test_downstream_compatibility.py +++ b/src/tests/downstream_compatibility/test_downstream_compatibility.py @@ -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", @@ -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"), ] # ---------------------------------------------------------------------------