Files
esp-idf/examples/zigbee/.build-test-rules.yml
T
glmfe e187d3b259 feat(protocol_examples_common): Use Ethernet Init component
- Refactored protocol_examples_common to use ethernet_init component
2025-11-20 18:57:03 +08:00

25 lines
695 B
YAML

# Documentation: .gitlab/ci/README.md#manifest-file-to-control-the-buildtest-apps
.zigbee_dependencies: &zigbee_dependencies
depends_components:
- ieee802154
- openthread
- protocol_examples_common
depends_filepatterns:
- examples/zigbee/light_sample/**/*
examples/zigbee/esp_zigbee_gateway:
enable:
- if: SOC_WIFI_SUPPORTED == 1 and IDF_TARGET not in ["esp32c2", "esp32c61"]
reason: not supported esp32c2 and esp32c61
<<: *zigbee_dependencies
examples/zigbee/light_sample:
enable:
- if: SOC_IEEE802154_SUPPORTED == 1
disable_test:
- if: IDF_TARGET != "esp32h2"
temporary: true
reason: only test on esp32h2
<<: *zigbee_dependencies