Merge branch 'bugfix/clean_thread_zigbee_related_yml' into 'master'

fix(thread/zigbee): Cleanup build-test-rules.yml

Closes IDF-5553

See merge request espressif/esp-idf!27415
This commit is contained in:
Shu Chen
2023-12-06 20:38:52 +08:00
3 changed files with 11 additions and 19 deletions

View File

@@ -21,10 +21,8 @@
- esp_hw_support - esp_hw_support
examples/openthread/ot_br: examples/openthread/ot_br:
disable: enable:
- if: IDF_TARGET in ["esp32h2", "esp32p4"] - if: SOC_WIFI_SUPPORTED == 1
temporary: true
reason: target(s) not supported yet
disable_test: disable_test:
- if: IDF_TARGET in ["esp32", "esp32c3", "esp32c2", "esp32c6", "esp32s2"] - if: IDF_TARGET in ["esp32", "esp32c3", "esp32c2", "esp32c6", "esp32s2"]
temporary: true temporary: true
@@ -47,11 +45,8 @@ examples/openthread/ot_rcp:
examples/openthread/ot_sleepy_device/deep_sleep: examples/openthread/ot_sleepy_device/deep_sleep:
enable: enable:
- if: IDF_TARGET in ["esp32h2"] - if: SOC_IEEE802154_SUPPORTED == 1
disable_test: <<: [*openthread_dependencies, *openthread_sleep_dependencies]
- if: IDF_TARGET == "esp32h2"
temporary: true
reason: Unsupport
examples/openthread/ot_sleepy_device/light_sleep: examples/openthread/ot_sleepy_device/light_sleep:
enable: enable:

View File

@@ -1,5 +1,5 @@
| Supported Targets | ESP32-H2 | | Supported Targets | ESP32-C6 | ESP32-H2 |
| ----------------- | -------- | | ----------------- | -------- | -------- |
# OpenThread Sleepy Device Example # OpenThread Sleepy Device Example

View File

@@ -6,22 +6,19 @@
- examples/zigbee/light_sample/**/* - examples/zigbee/light_sample/**/*
examples/zigbee/esp_zigbee_gateway: examples/zigbee/esp_zigbee_gateway:
disable: enable:
- if: IDF_TARGET in ["esp32c2", "esp32h2", "esp32p4"] - if: SOC_WIFI_SUPPORTED == 1 and IDF_TARGET != "esp32c2"
temporary: true reason: not supported esp32c2
reason: target(s) not supported yet
<<: *zigbee_dependencies <<: *zigbee_dependencies
examples/zigbee/esp_zigbee_rcp: examples/zigbee/esp_zigbee_rcp:
enable: enable:
- if: IDF_TARGET in ["esp32c6", "esp32h2"] - if: SOC_IEEE802154_SUPPORTED == 1
reason: should able to run on esp32h2 and esp32c6
<<: *zigbee_dependencies <<: *zigbee_dependencies
examples/zigbee/light_sample: examples/zigbee/light_sample:
enable: enable:
- if: IDF_TARGET in ["esp32c6", "esp32h2"] - if: SOC_IEEE802154_SUPPORTED == 1
reason: should able to run on esp32h2 and esp32c6
disable_test: disable_test:
- if: IDF_TARGET == "esp32c6" - if: IDF_TARGET == "esp32c6"
temporary: true temporary: true