esp-idf/examples/zigbee/.build-test-rules.yml
xieqinan@espressif.com a41c2d498e feat(zigbee): Upgrade the Zigbee lib to v1.6 for Zigbee examples
- Optimize the Zigbee light, switch and gateway examples
- Remove the esp_zigbee_rcp example
2024-11-04 14:21:42 +08:00

23 lines
647 B
YAML

# Documentation: .gitlab/ci/README.md#manifest-file-to-control-the-buildtest-apps
.zigbee_dependencies: &zigbee_dependencies
depends_components:
- ieee802154
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