ci: config-check base -> python:3.13 (HA py floor + glibc for runner node)
ci / lint (push) Failing after 16s
ci / config-check (push) Failing after 0s

This commit is contained in:
2026-09-06 06:43:44 -05:00
parent 0c44be9925
commit b06ef7dbf0
+7 -3
View File
@@ -30,14 +30,18 @@ jobs:
# Real load validation: boots Home Assistant against the repo config and # Real load validation: boots Home Assistant against the repo config and
# proves HA can parse + set up every integration (yamllint only proves the # proves HA can parse + set up every integration (yamllint only proves the
# YAML parses; this catches unknown keys, bad Jinja, schema drift). # YAML parses; this catches unknown keys, bad Jinja, schema drift).
# Pinned to the version the box runs. Stub secrets are CI-only fixtures # Pinned to the HA version the box runs; HA 2026.8 needs python 3.13 and a
# (tests/fixtures/secrets-stub.yaml) — never present on the live box. # glibc debian base (the runner mounts a glibc node for checkout — alpine
# cannot exec it, first CI run proved that in 12 seconds).
# Stub secrets are CI-only fixtures — never present on the live box.
config-check: config-check:
runs-on: ultix runs-on: ultix
container: container:
image: homeassistant/home-assistant:2026.8.3 image: python:3.13-bookworm
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: install homeassistant 2026.8.3
run: pip install --quiet homeassistant==2026.8.3
- name: homeassistant check_config - name: homeassistant check_config
run: | run: |
cp tests/fixtures/secrets-stub.yaml secrets.yaml cp tests/fixtures/secrets-stub.yaml secrets.yaml