mirror of
https://github.com/espressif/esp-idf.git
synced 2026-04-27 19:13:21 +00:00
ae561069b0
- add ESP32-P4 and ESP32-H2 as Supported Targets to following examples, using ESP-Hosted and Wi-Fi Remote as components: - iperf (H2) - getting_started/softAP - getting_started/station - scan - fast_scan - softap_sta - updated .build-test-rules.yml to enable pre-commit to accept ESP32-P4 and ESP32-H2 as Supported Targets - updated top level `README.md` to add references to ESP-Hosted
113 lines
2.6 KiB
YAML
113 lines
2.6 KiB
YAML
# Documentation: .gitlab/ci/README.md#manifest-file-to-control-the-buildtest-apps
|
|
|
|
.wifi_depends_default: &wifi_depends_default
|
|
depends_components:
|
|
- esp_wifi
|
|
- esp_phy
|
|
- esp_netif
|
|
- esp_event
|
|
- esp_coex
|
|
- wpa_supplicant
|
|
- mbedtls
|
|
- nvs_flash
|
|
- console
|
|
- esp_pm
|
|
- protocol_examples_common
|
|
|
|
examples/wifi:
|
|
<<: *wifi_depends_default
|
|
enable:
|
|
- if: IDF_TARGET == "esp32h2"
|
|
disable:
|
|
- if: (SOC_WIFI_SUPPORTED != 1) and (SOC_WIRELESS_HOST_SUPPORTED != 1)
|
|
|
|
examples/wifi/fast_scan:
|
|
enable:
|
|
- if: IDF_TARGET == "esp32h2"
|
|
disable:
|
|
- if: (SOC_WIFI_SUPPORTED != 1) and (SOC_WIRELESS_HOST_SUPPORTED != 1)
|
|
|
|
examples/wifi/ftm:
|
|
<<: *wifi_depends_default
|
|
disable:
|
|
- if: SOC_WIFI_FTM_SUPPORT != 1
|
|
reason: requires hardware support
|
|
|
|
examples/wifi/getting_started:
|
|
<<: *wifi_depends_default
|
|
enable:
|
|
- if: IDF_TARGET == "esp32h2"
|
|
disable:
|
|
- if: (SOC_WIFI_SUPPORTED != 1) and (SOC_WIRELESS_HOST_SUPPORTED != 1)
|
|
depends_filepatterns:
|
|
- examples/wifi/getting_started/**/*
|
|
|
|
examples/wifi/iperf:
|
|
enable:
|
|
- if: IDF_TARGET == "esp32h2"
|
|
disable:
|
|
- if: (SOC_WIFI_SUPPORTED != 1) and (SOC_WIRELESS_HOST_SUPPORTED != 1)
|
|
- if: (IDF_TARGET == "esp32p4") and CONFIG_NAME in ["defaults", "99"]
|
|
disable_test:
|
|
- if: IDF_TARGET not in ["esp32"]
|
|
temporary: true
|
|
reason: lack of runners
|
|
depends_components:
|
|
- esp_wifi
|
|
- esp_phy
|
|
- esp_netif
|
|
- lwip
|
|
- esp_event
|
|
- esp_coex
|
|
- wpa_supplicant
|
|
|
|
examples/wifi/itwt:
|
|
<<: *wifi_depends_default
|
|
disable:
|
|
- if: SOC_WIFI_HE_SUPPORT != 1
|
|
|
|
examples/wifi/power_save:
|
|
<<: *wifi_depends_default
|
|
disable:
|
|
- if: SOC_WIFI_SUPPORTED != 1
|
|
temporary: true
|
|
reason: requires hardware support
|
|
depends_components:
|
|
- esp_wifi
|
|
- esp_phy
|
|
- esp_netif
|
|
- lwip
|
|
- esp_event
|
|
- esp_coex
|
|
- wpa_supplicant
|
|
- esp_driver_uart
|
|
|
|
examples/wifi/scan:
|
|
enable:
|
|
- if: IDF_TARGET == "esp32h2"
|
|
disable:
|
|
- if: (SOC_WIFI_SUPPORTED != 1) and (SOC_WIRELESS_HOST_SUPPORTED != 1)
|
|
|
|
examples/wifi/softap_sta:
|
|
enable:
|
|
- if: IDF_TARGET == "esp32h2"
|
|
disable:
|
|
- if: (SOC_WIFI_SUPPORTED != 1) and (SOC_WIRELESS_HOST_SUPPORTED != 1)
|
|
|
|
examples/wifi/wifi_aware:
|
|
disable:
|
|
- if: SOC_WIFI_NAN_SUPPORT != 1
|
|
reason: targets esp32c3, esp32s3, esp32c2 and esp32c6 are not supported
|
|
depends_components:
|
|
- esp_wifi
|
|
- esp_phy
|
|
- esp_netif
|
|
- lwip
|
|
- esp_event
|
|
- esp_coex
|
|
- wpa_supplicant
|
|
- mbedtls
|
|
- nvs_flash
|
|
depends_filepatterns:
|
|
- examples/system/console/advanced/components/**/*
|