mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
36 lines
978 B
YAML
36 lines
978 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", "esp32c5", "esp32c61"]
|
|
reason: not supported esp32c2 and esp32c5 and esp32c61
|
|
<<: *zigbee_dependencies
|
|
|
|
examples/zigbee/esp_zigbee_rcp:
|
|
enable:
|
|
- if: SOC_IEEE802154_SUPPORTED == 1
|
|
disable:
|
|
- if: IDF_TARGET == "esp32c5"
|
|
temporary: true
|
|
reason: Not supported yet
|
|
<<: *zigbee_dependencies
|
|
|
|
examples/zigbee/light_sample:
|
|
enable:
|
|
- if: SOC_IEEE802154_SUPPORTED == 1
|
|
disable:
|
|
- if: IDF_TARGET == "esp32c5"
|
|
temporary: true
|
|
reason: Not supported yet
|
|
disable_test:
|
|
- if: IDF_TARGET == "esp32c6"
|
|
temporary: true
|
|
reason: only test on esp32h2
|
|
<<: *zigbee_dependencies
|