Skip to content

Commit e37d33c

Browse files
committed
Merge branch 'feature/disable-c5-ci-build' into 'release/v5.4'
feat(zigbee): disable the build process of zigbee example on esp32c5 See merge request espressif/esp-idf!37024
2 parents e6815fd + 60f820e commit e37d33c

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

examples/zigbee/.build-test-rules.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,14 @@
88

99
examples/zigbee/esp_zigbee_gateway:
1010
enable:
11-
- if: SOC_WIFI_SUPPORTED == 1 and IDF_TARGET not in ["esp32c2", "esp32c61"]
12-
reason: not supported esp32c2 and esp32c61
11+
- if: SOC_WIFI_SUPPORTED == 1 and IDF_TARGET not in ["esp32c2", "esp32c61", "esp32c5"]
12+
reason: not supported esp32c2, esp32c61 and esp32c5
1313
<<: *zigbee_dependencies
1414

1515
examples/zigbee/light_sample:
1616
enable:
17-
- if: SOC_IEEE802154_SUPPORTED == 1
17+
- if: SOC_IEEE802154_SUPPORTED == 1 and IDF_TARGET not in ["esp32c5"]
18+
reason: zigbee on esp32c5 is only supported in idf master
1819
disable_test:
1920
- if: IDF_TARGET != "esp32h2"
2021
temporary: true

examples/zigbee/esp_zigbee_gateway/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
| Supported Targets | ESP32 | ESP32-C3 | ESP32-C5 | ESP32-C6 | ESP32-S2 | ESP32-S3 |
2-
| ----------------- | ----- | -------- | -------- | -------- | -------- | -------- |
1+
| Supported Targets | ESP32 | ESP32-C3 | ESP32-C6 | ESP32-S2 | ESP32-S3 |
2+
| ----------------- | ----- | -------- | -------- | -------- | -------- |
33

44
# Gateway Example
55

examples/zigbee/light_sample/HA_on_off_light/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
| Supported Targets | ESP32-C5 | ESP32-C6 | ESP32-H2 |
2-
| ----------------- | -------- | -------- | -------- |
1+
| Supported Targets | ESP32-C6 | ESP32-H2 |
2+
| ----------------- | -------- | -------- |
33

44
# Light Bulb Example
55

examples/zigbee/light_sample/HA_on_off_switch/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
| Supported Targets | ESP32-C5 | ESP32-C6 | ESP32-H2 |
2-
| ----------------- | -------- | -------- | -------- |
1+
| Supported Targets | ESP32-C6 | ESP32-H2 |
2+
| ----------------- | -------- | -------- |
33

44
# Light Switch Example
55

0 commit comments

Comments
 (0)