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
12 changes: 11 additions & 1 deletion .github/workflows/build_and_test_host.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,16 @@ jobs:
if: always()
- name: Bazel test targets
run: |
bazel test //... --build_tests_only
bazel test //... --build_tests_only --test_tag_filters=-lint,-tc8
- name: Bazel TC8 SOME/IP Conformance Targets
run: |
# Add loopback multicast route for TC8 conformance tests
# '|| true' prevents step failure if route already exists on the runner
sudo ip route add 224.0.0.0/4 dev lo || true

# Confirm multicast route was added
ip route show | grep "224\." || echo "WARNING: No multicast route found in routing table!"

bazel test --test_tag_filters=lint,tc8 --test_output=all --test_env=TC8_HOST_IP=127.0.0.1 //tests/tc8_conformance/...
- run: df -h
if: always()
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ repos:
- id: check-shebang-scripts-are-executable
- id: check-executables-have-shebangs
- id: check-added-large-files
args: [--maxkb=50, --enforce-all] # increase or add git lfs if too strict
args: [--maxkb=125, --enforce-all] # increase or add git lfs if too strict
exclude: MODULE.bazel.lock|tests/benchmarks/benchmarks_analysis.md

- repo: https://github.com/jumanjihouse/pre-commit-hooks
Expand Down
4 changes: 3 additions & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ register_toolchains(
# ============================================================================
# Tooling & Development
# ============================================================================
bazel_dep(name = "score_tooling", version = "1.0.4", dev_dependency = True)
bazel_dep(name = "score_tooling", version = "1.1.2", dev_dependency = True)
bazel_dep(name = "aspect_rules_lint", version = "2.3.0", dev_dependency = True)
bazel_dep(name = "buildifier_prebuilt", version = "8.5.1", dev_dependency = True)

Expand All @@ -173,13 +173,15 @@ download_archive = use_repo_rule("@download_utils//download/archive:defs.bzl", "
download_archive(
name = "json_schema_validator",
build = "//third_party/json_schema_validator:json_schema_validator.BUILD",
integrity = "sha256-g/YdgRL0heDT8ectUWELo5JLF5kmqDdq7zwDh3D68gI=",
strip_prefix = "json-schema-validator-2.1.0",
urls = ["https://github.com/pboettch/json-schema-validator/archive/refs/tags/2.1.0.tar.gz"],
)

download_archive(
name = "jsonschema",
build = "//third_party/jsonschema:jsonschema.BUILD",
integrity = "sha256-rugv6PaV/h4ielG3dMOujCuyVpUGUampKGbFI7FQQs4=",
strip_prefix = "jsonschema-4.23.0",
urls = ["https://github.com/python-jsonschema/jsonschema/archive/refs/tags/v4.23.0.tar.gz"],
)
Expand Down
5 changes: 5 additions & 0 deletions REUSE.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,8 @@ path = [
]
SPDX-FileCopyrightText = "Copyright (c) 2026 Contributors to the Eclipse Foundation"
SPDX-License-Identifier = "Apache-2.0"

[[annotations]]
path = ["tests/tc8_conformance/config/*.json"]
SPDX-FileCopyrightText = "Copyright (c) 2026 Contributors to the Eclipse Foundation"
SPDX-License-Identifier = "Apache-2.0"
7 changes: 7 additions & 0 deletions docs/architecture/components.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,15 @@ Components
:safety: ASIL_B
:security: NO

The SOME/IP gateway daemon (ASIL-B), bridging the IPC network
(score::mw::com) and the SOME/IP network by managing local and remote
service instances.

.. comp:: SOME/IP Network Daemon
:id: comp__someipd
:status: valid
:safety: QM
:security: NO

The SOME/IP stack daemon (QM), wrapping vsomeip for all network I/O
and SOME/IP Service Discovery.
1 change: 1 addition & 0 deletions docs/architecture/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@ Design decisions
:maxdepth: 1

dec_someipgw_registration.rst
tc8_conformance_testing.rst
Loading
Loading