From 611204b9a2d3b68fa8c739606676d3a07910feb6 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Thu, 9 Oct 2025 07:29:44 -1000 Subject: [PATCH] fix --- script/split_components_for_ci.py | 1 + script/test_build_components.py | 1 + 2 files changed, 2 insertions(+) diff --git a/script/split_components_for_ci.py b/script/split_components_for_ci.py index c1dfe861d7..3c79d6fdad 100755 --- a/script/split_components_for_ci.py +++ b/script/split_components_for_ci.py @@ -30,6 +30,7 @@ from script.analyze_component_buses import ( # NOTE: This should be kept in sync with ISOLATED_COMPONENTS in test_build_components ISOLATED_COMPONENTS = { "camera_encoder": "Multiple definition errors: esp32-camera IDF component conflicts with ESPHome camera component", + "camera": "Uses relative include paths that break when merged with other components", } diff --git a/script/test_build_components.py b/script/test_build_components.py index af275522d1..01917eb90e 100755 --- a/script/test_build_components.py +++ b/script/test_build_components.py @@ -39,6 +39,7 @@ from script.merge_component_configs import merge_component_configs ISOLATED_COMPONENTS = { "camera_encoder": "Multiple definition errors: esp32-camera IDF component conflicts with ESPHome camera component (buffer_impl.cpp symbols defined in both src/camera/ and src/esphome/components/camera/)", "camera": "Uses relative include paths that break when merged with other components", + "esphome": "Defines devices/areas in esphome: section that are referenced in other sections - breaks when merged", }