# 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 disable: - if: IDF_TARGET == "esp32s31" temporary: true reason: Zigbee gateway example does not support esp32s31 yet <<: *zigbee_dependencies examples/zigbee/light_sample: enable: - if: SOC_IEEE802154_SUPPORTED == 1 and IDF_TARGET not in ["esp32h4", "esp32s31", "esp32h21"] disable_test: - if: IDF_TARGET != "esp32h2" temporary: true reason: only test on esp32h2 <<: *zigbee_dependencies