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
|
|
|
|
depends_filepatterns:
|
|
|
|
- components/ieee802154/**/*
|
|
|
|
- examples/zigbee/light_sample/**/*
|
|
|
|
|
2022-07-12 22:34:02 -04:00
|
|
|
examples/zigbee/esp_zigbee_gateway:
|
|
|
|
disable:
|
2023-08-16 22:45:23 -04:00
|
|
|
- if: IDF_TARGET in ["esp32c2", "esp32h2", "esp32p4"]
|
2022-07-12 22:34:02 -04:00
|
|
|
temporary: true
|
2022-10-27 06:55:07 -04:00
|
|
|
reason: target(s) not supported yet
|
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-04-07 01:49:39 -04:00
|
|
|
- if: IDF_TARGET in ["esp32c6", "esp32h2"]
|
|
|
|
reason: should able to run on esp32h2 and esp32c6
|
2023-05-16 05:04:47 -04:00
|
|
|
<<: *zigbee_dependencies
|
2022-07-12 22:34:02 -04:00
|
|
|
|
|
|
|
examples/zigbee/light_sample:
|
|
|
|
enable:
|
2023-04-07 01:49:39 -04:00
|
|
|
- if: IDF_TARGET in ["esp32c6", "esp32h2"]
|
|
|
|
reason: should able to run on esp32h2 and esp32c6
|
2023-05-16 05:04:47 -04:00
|
|
|
disable_test:
|
|
|
|
- if: IDF_TARGET == "esp32c6"
|
|
|
|
temporary: true
|
|
|
|
reason: only test on esp32h2
|
|
|
|
<<: *zigbee_dependencies
|