2022-07-12 22:34:02 -04:00
|
|
|
# Documentation: .gitlab/ci/README.md#manifest-file-to-control-the-buildtest-apps
|
|
|
|
|
2023-05-16 05:04:47 -04:00
|
|
|
.zigbee_dependencies: &zigbee_dependencies
|
2023-11-30 09:38:49 -05:00
|
|
|
depends_components:
|
|
|
|
- ieee802154
|
2023-05-16 05:04:47 -04:00
|
|
|
depends_filepatterns:
|
|
|
|
- examples/zigbee/light_sample/**/*
|
|
|
|
|
2022-07-12 22:34:02 -04:00
|
|
|
examples/zigbee/esp_zigbee_gateway:
|
2023-11-27 03:03:02 -05:00
|
|
|
enable:
|
2024-08-20 05:39:25 -04:00
|
|
|
- if: SOC_WIFI_SUPPORTED == 1 and IDF_TARGET not in ["esp32c2", "esp32c5", "esp32c61"]
|
|
|
|
reason: not supported esp32c2 and esp32c5 and esp32c61
|
2023-05-16 05:04:47 -04:00
|
|
|
<<: *zigbee_dependencies
|
2022-07-12 22:34:02 -04:00
|
|
|
|
|
|
|
examples/zigbee/esp_zigbee_rcp:
|
|
|
|
enable:
|
2023-11-27 03:03:02 -05:00
|
|
|
- if: SOC_IEEE802154_SUPPORTED == 1
|
2024-07-31 05:22:06 -04:00
|
|
|
disable:
|
|
|
|
- if: IDF_TARGET == "esp32c5"
|
|
|
|
temporary: true
|
|
|
|
reason: Not supported yet
|
2023-05-16 05:04:47 -04:00
|
|
|
<<: *zigbee_dependencies
|
2022-07-12 22:34:02 -04:00
|
|
|
|
|
|
|
examples/zigbee/light_sample:
|
|
|
|
enable:
|
2023-11-27 03:03:02 -05:00
|
|
|
- if: SOC_IEEE802154_SUPPORTED == 1
|
2024-07-31 05:22:06 -04:00
|
|
|
disable:
|
|
|
|
- if: IDF_TARGET == "esp32c5"
|
|
|
|
temporary: true
|
|
|
|
reason: Not supported yet
|
2023-05-16 05:04:47 -04:00
|
|
|
disable_test:
|
|
|
|
- if: IDF_TARGET == "esp32c6"
|
|
|
|
temporary: true
|
|
|
|
reason: only test on esp32h2
|
|
|
|
<<: *zigbee_dependencies
|