mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-06-24 01:22:05 +08:00
b1a6223b14
* ci: simplify cereal validation to sparse-checkout + pycapnp, drop scons build Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com> * more * fix: resolve cereal_dir to absolute path before passing to capnp.load Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com> * ci: init opendbc submodule after sparse checkout to resolve car.capnp symlink Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com> * try to break it * Revert "try to break it" This reverts commit79ce135c5f. * try to break it * Revert "try to break it" This reverts commit1eaa9e79e6. --------- Co-authored-by: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
66 lines
2.1 KiB
YAML
66 lines
2.1 KiB
YAML
name: cereal validation
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
paths:
|
|
- 'cereal/**'
|
|
workflow_dispatch:
|
|
workflow_call:
|
|
inputs:
|
|
run_number:
|
|
default: '1'
|
|
required: true
|
|
type: string
|
|
|
|
concurrency:
|
|
group: cereal-validation-ci-run-${{ inputs.run_number }}-${{ github.event_name == 'push' && github.ref == 'refs/heads/master' && github.run_id || github.head_ref || github.ref }}-${{ github.workflow }}-${{ github.event_name }}
|
|
cancel-in-progress: true
|
|
|
|
env:
|
|
CI: 1
|
|
|
|
jobs:
|
|
validate_cereal_with_upstream:
|
|
name: Validate cereal with Upstream
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- name: Checkout sunnypilot cereal
|
|
uses: actions/checkout@v6
|
|
with:
|
|
sparse-checkout: cereal
|
|
|
|
- name: Init sunnypilot opendbc submodule
|
|
run: git submodule update --init --depth 1 opendbc_repo
|
|
|
|
- name: Checkout upstream openpilot cereal
|
|
uses: actions/checkout@v6
|
|
with:
|
|
repository: 'commaai/openpilot'
|
|
path: upstream_openpilot
|
|
sparse-checkout: cereal
|
|
ref: "refs/heads/master"
|
|
|
|
- name: Init upstream opendbc submodule
|
|
working-directory: upstream_openpilot
|
|
run: git submodule update --init --depth 1 opendbc_repo
|
|
|
|
- name: Install uv
|
|
run: pip install uv
|
|
|
|
- name: Generate sunnypilot schema
|
|
run: |
|
|
PYCAPNP_VER=$(python3 -c "import re; m=re.search(r'name = \"pycapnp\"\nversion = \"([^\"]+)\"', open('uv.lock').read()); print(m.group(1))")
|
|
uv run --isolated --with "pycapnp==${PYCAPNP_VER}" \
|
|
python3 cereal/messaging/tests/validate_sp_cereal_upstream.py \
|
|
-g -f /tmp/sp_schema.json --cereal-dir cereal
|
|
|
|
- name: Validate against upstream
|
|
run: |
|
|
PYCAPNP_VER=$(python3 -c "import re; m=re.search(r'name = \"pycapnp\"\nversion = \"([^\"]+)\"', open('uv.lock').read()); print(m.group(1))")
|
|
uv run --isolated --with "pycapnp==${PYCAPNP_VER}" \
|
|
python3 cereal/messaging/tests/validate_sp_cereal_upstream.py \
|
|
-r -f /tmp/sp_schema.json --cereal-dir upstream_openpilot/cereal
|