Merge branch 'feature/update_depends_components_for_core_components' into 'master'

feat(all): Update depends_components for core components

Closes IDF-14170, IDF-14165, IDF-14173, IDF-14167, IDF-14169, and IDF-14162

See merge request espressif/esp-idf!43735
This commit is contained in:
Konstantin Kondrashov
2025-12-04 18:17:55 +08:00
21 changed files with 72 additions and 19 deletions
@@ -22,3 +22,7 @@ components/app_update/test_apps:
- if: CONFIG_NAME == "recovery_bootloader" and SOC_RECOVERY_BOOTLOADER_SUPPORTED == 1 and IDF_TARGET == "esp32c61"
temporary: true
reason: lack of runners # TODO: [ESP32C61] IDF-13165
depends_components:
- app_update
- bootloader_support
- esp_partitions
@@ -1,6 +1,15 @@
# Documentation: .gitlab/ci/README.md#manifest-file-to-control-the-buildtest-apps
components/bootloader_support/test_apps/bootloader_support:
disable_test:
- if: IDF_TARGET not in ["esp32", "esp32s3", "esp32c3"]
reason: Testing on two diff architectures is sufficient
depends_components:
- bootloader_support
components/bootloader_support/test_apps/rtc_custom_section:
enable:
- if: SOC_RTC_MEM_SUPPORTED == 1
reason: this feature is supported on chips that have RTC memory
depends_components:
- bootloader_support
@@ -6,3 +6,5 @@ components/efuse/test_apps:
disable_test:
- if: IDF_TARGET in ["esp32s2", "esp32s3"]
reason: eFuse for S2 and S3 is similar to the C3 chip, so we only test for C3.
depends_components:
- efuse
@@ -1,3 +1,5 @@
components/esp_event/host_test:
enable:
- if: IDF_TARGET == "linux"
depends_components:
- esp_event
@@ -4,3 +4,5 @@ components/esp_event/test_apps:
enable:
- if: IDF_TARGET in ["esp32", "esp32s2", "esp32c3", "linux"]
reason: covers all major arch types, xtensa vs riscv, single vs dual-core
depends_components:
- esp_event
@@ -27,5 +27,5 @@ endif()
# the component can be registered as WHOLE_ARCHIVE
idf_component_register(SRCS ${srcs}
PRIV_REQUIRES unity esp_driver_gpio esp_driver_gptimer esp_driver_uart
test_utils efuse spi_flash esp_timer esp_hal_wdt
test_utils spi_flash esp_timer esp_hal_wdt
WHOLE_ARCHIVE)
@@ -8,5 +8,5 @@ set(include "."
# the component can be registered as WHOLE_ARCHIVE
idf_component_register(SRCS ${srcs}
INCLUDE_DIRS include
REQUIRES unity esp_driver_gpio console test_utils efuse
REQUIRES unity esp_driver_gpio console test_utils
WHOLE_ARCHIVE)
@@ -3,6 +3,8 @@
components/esp_rom/test_apps/linux_rom_apis:
enable:
- if: IDF_TARGET == "linux"
depends_components:
- esp_rom
components/esp_rom/test_apps/rom_impl_components:
disable:
@@ -10,9 +12,13 @@ components/esp_rom/test_apps/rom_impl_components:
- if: CONFIG_NAME == "rom_impl_components" and ((ESP_ROM_HAS_HAL_WDT != 1 and ESP_ROM_HAS_HAL_SYSTIMER != 1) and (ESP_ROM_HAS_HEAP_TLSF != 1 and ESP_ROM_HAS_SPI_FLASH != 1))
- if: CONFIG_NAME == "no_rom_impl_components" and ((ESP_ROM_HAS_HAL_WDT != 1 and ESP_ROM_HAS_HAL_SYSTIMER != 1) and (ESP_ROM_HAS_HEAP_TLSF != 1 and ESP_ROM_HAS_SPI_FLASH != 1))
- if: SOC_WDT_SUPPORTED != 1
depends_components:
- esp_rom
components/esp_rom/test_apps/rom_tests:
disable_test:
- if: IDF_TARGET in ["esp32", "esp32c2"]
temporary: false
reason: lack of memory for testing miniz compressing
depends_components:
- esp_rom
@@ -1,6 +1,8 @@
# Documentation: .gitlab/ci/README.md#manifest-file-to-control-the-buildtest-apps
components/esp_timer/test_apps:
depends_components:
- esp_timer
disable:
- if: CONFIG_NAME == "dfs" and SOC_CLK_XTAL32K_SUPPORTED != 1
reason: The test requires the XTAL32K clock to measure the esp_timer timing accuracy
@@ -4,3 +4,5 @@ components/log/host_test/log_test:
enable:
- if: IDF_TARGET == "linux"
reason: only test on linux
depends_components:
- log
@@ -4,3 +4,5 @@ components/log/test_apps:
enable:
- if: IDF_TARGET == "esp32"
reason: only test on esp32
depends_components:
- log
@@ -13,7 +13,6 @@ components/mbedtls/test_apps:
- if: CONFIG_NAME == "psram_all_ext_flash_enc" and IDF_TARGET not in ["esp32"]
reason: lack of runners
depends_components:
- efuse
- mbedtls
- esp_security
- esp_mm
@@ -7,5 +7,3 @@ components/wpa_supplicant/test_apps:
- esp_wifi
- wpa_supplicant
- mbedtls
- esp_timer
- esp_event
-4
View File
@@ -93,7 +93,6 @@ examples/bluetooth/blufi:
depends_components+:
- esp_console
- esp_wifi
- esp_event
examples/bluetooth/esp_ble_mesh:
<<: *bt_default_depends
@@ -284,7 +283,6 @@ examples/bluetooth/nimble/blecent:
disable:
- if: SOC_BLE_SUPPORTED != 1
depends_components+:
- esp_event
- esp_coex
- esp_pm
depends_filepatterns:
@@ -308,7 +306,6 @@ examples/bluetooth/nimble/bleprph_wifi_coex:
- if: SOC_BLE_SUPPORTED != 1
- if: SOC_WIFI_SUPPORTED != 1
depends_components+:
- esp_event
- esp_hid
- esp_wifi
- esp_coex
@@ -328,7 +325,6 @@ examples/bluetooth/nimble/power_save:
disable:
- if: SOC_BLE_SUPPORTED != 1
depends_components+:
- esp_event
- esp_coex
- esp_pm
depends_filepatterns:
@@ -1,6 +1,30 @@
# Documentation: .gitlab/ci/README.md#manifest-file-to-control-the-buildtest-apps
examples/custom_bootloader/bootloader_extra_dir:
disable_test:
- if: IDF_TARGET not in ["esp32s3", "esp32c3"]
reason: Testing on two diff architectures is sufficient
depends_components:
- bootloader_support
examples/custom_bootloader/bootloader_hooks:
disable_test:
- if: IDF_TARGET not in ["esp32s3", "esp32c3"]
reason: Testing on two diff architectures is sufficient
depends_components:
- bootloader_support
examples/custom_bootloader/bootloader_multiboot:
disable_test:
- if: IDF_TARGET not in ["esp32s3", "esp32c3"]
reason: Testing on two diff architectures is sufficient
depends_components:
- bootloader_support
examples/custom_bootloader/bootloader_override:
disable_test:
- if: IDF_TARGET not in ["esp32s3", "esp32c3"]
reason: Testing on two diff architectures is sufficient
depends_components:
- bootloader_support
-2
View File
@@ -9,7 +9,6 @@ examples/ethernet/basic:
- esp_eth
- esp_netif
- lwip
- esp_event
- esp_driver_gpio
examples/ethernet/iperf:
@@ -24,7 +23,6 @@ examples/ethernet/iperf:
- esp_eth
- esp_netif
- lwip
- esp_event
- console
- esp_driver_gpio
- esp_driver_spi
+4
View File
@@ -10,6 +10,8 @@ examples/security/flash_encryption:
- if: IDF_TARGET in ["esp32s2", "esp32s3", "esp32c6", "esp32h2", "esp32c2", "esp32c5", "esp32c61"]
temporary: true
reason: lack of runners
depends_components:
- bootloader_support
examples/security/hmac_soft_jtag:
disable:
@@ -38,6 +40,8 @@ examples/security/nvs_encryption_hmac:
examples/security/security_features_app:
disable:
- if: IDF_TARGET not in ["esp32c3", "esp32s3"]
depends_components:
- bootloader_support
examples/security/tee/tee_attestation:
disable:
+8 -1
View File
@@ -60,6 +60,14 @@ examples/system/efuse:
- efuse
- bootloader_support
examples/system/esp_event/default_event_loop:
depends_components:
- esp_event
examples/system/esp_event/user_event_loops:
depends_components:
- esp_event
examples/system/esp_timer:
depends_components:
- esp_timer
@@ -85,7 +93,6 @@ examples/system/freertos/basic_freertos_smp_usage:
depends_components:
- freertos
- console
- esp_timer
examples/system/freertos/real_time_stats:
disable:
-6
View File
@@ -5,7 +5,6 @@
- esp_wifi
- esp_phy
- esp_netif
- esp_event
- esp_coex
- wpa_supplicant
- mbedtls
@@ -61,7 +60,6 @@ examples/wifi/iperf:
- esp_phy
- esp_netif
- lwip
- esp_event
- esp_coex
- wpa_supplicant
@@ -81,7 +79,6 @@ examples/wifi/power_save:
- esp_phy
- esp_netif
- lwip
- esp_event
- esp_coex
- wpa_supplicant
- esp_driver_uart
@@ -107,7 +104,6 @@ examples/wifi/wifi_aware/nan_console:
- esp_phy
- esp_netif
- lwip
- esp_event
- esp_coex
- wpa_supplicant
- mbedtls
@@ -124,7 +120,6 @@ examples/wifi/wifi_aware/nan_publisher:
- esp_phy
- esp_netif
- lwip
- esp_event
- esp_coex
- wpa_supplicant
- mbedtls
@@ -139,7 +134,6 @@ examples/wifi/wifi_aware/nan_subscriber:
- esp_phy
- esp_netif
- lwip
- esp_event
- esp_coex
- wpa_supplicant
- mbedtls
@@ -4,7 +4,7 @@ tools/test_apps/linux_compatible/generic_build_test:
enable:
- if: IDF_TARGET in ["esp32", "esp32c3", "linux"]
depends_components:
- log
- pthread
tools/test_apps/linux_compatible/linux_freertos:
enable:
@@ -99,6 +99,8 @@ tools/test_apps/system/log:
disable_test:
- if: IDF_TARGET not in ["esp32", "esp32c3"]
reason: test only on esp32 and c3 as other targets are similar
depends_components:
- log
tools/test_apps/system/longjmp_test:
enable: