2022-07-13 10:34:02 +08:00
|
|
|
# Documentation: .gitlab/ci/README.md#manifest-file-to-control-the-buildtest-apps
|
|
|
|
|
2023-05-16 17:04:47 +08:00
|
|
|
.zigbee_dependencies: &zigbee_dependencies
|
2023-11-30 15:38:49 +01:00
|
|
|
depends_components:
|
|
|
|
- ieee802154
|
2023-05-16 17:04:47 +08:00
|
|
|
depends_filepatterns:
|
|
|
|
- examples/zigbee/light_sample/**/*
|
|
|
|
|
2022-07-13 10:34:02 +08:00
|
|
|
examples/zigbee/esp_zigbee_gateway:
|
2023-11-27 16:03:02 +08:00
|
|
|
enable:
|
2024-08-07 10:47:05 +08:00
|
|
|
- if: SOC_WIFI_SUPPORTED == 1 and IDF_TARGET not in ["esp32c2", "esp32c61"]
|
|
|
|
reason: not supported esp32c2 and esp32c61
|
2023-05-16 17:04:47 +08:00
|
|
|
<<: *zigbee_dependencies
|
2022-07-13 10:34:02 +08:00
|
|
|
|
|
|
|
examples/zigbee/light_sample:
|
|
|
|
enable:
|
2023-11-27 16:03:02 +08:00
|
|
|
- if: SOC_IEEE802154_SUPPORTED == 1
|
2023-05-16 17:04:47 +08:00
|
|
|
disable_test:
|
2024-08-07 10:47:05 +08:00
|
|
|
- if: IDF_TARGET != "esp32h2"
|
2023-05-16 17:04:47 +08:00
|
|
|
temporary: true
|
|
|
|
reason: only test on esp32h2
|
|
|
|
<<: *zigbee_dependencies
|