Files
esp-idf/components/esp_driver_sdio/test_apps/.build-test-rules.yml
morris fe436d881e feat(ci): remove common_components dependencies from peripheral drivers
Replace *common_components with specific driver dependencies across all
peripheral driver test apps and examples to prevent unnecessary CI
triggers
when common_components change.

This follows the same pattern established in TWAI driver commit:
6d21cc6c29

Changes made:
- 26 component test apps updated
(esp_driver_*/test_apps/.build-test-rules.yml)
- 1 driver test app updated
(components/driver/test_apps/.build-test-rules.yml)
- Key examples updated in examples/peripherals/.build-test-rules.yml
- Established standard dependency pattern: esp_hal_xxx, esp_hw_support,
soc
- Added esp_driver_gpio for GPIO-dependent drivers
2026-01-29 16:33:17 +08:00

27 lines
792 B
YAML

components/esp_driver_sdio/test_apps/sdio/sdio_common_tests/host_sdmmc:
enable:
- if: IDF_TARGET in ["esp32", "esp32p4"]
reason: runners use ESP32 / ESP32P4 SDMMC as host
depends_components:
- sdmmc
- esp_driver_sdmmc
- esp_driver_sdio
- esp_hal_sd
- esp_hw_support
- soc
components/esp_driver_sdio/test_apps/sdio/sdio_common_tests/sdio:
enable:
# There is no retention support for SDIO slave, just build and test if driver can forbid from auto light sleep.
- if: CONFIG_NAME == "sleep_retention" and SOC_PAU_SUPPORTED == 1
- if: CONFIG_NAME != "sleep_retention"
disable:
- if: SOC_SDIO_SLAVE_SUPPORTED != 1
depends_components:
- sdmmc
- esp_driver_sdmmc
- esp_driver_sdio
- esp_hal_sd
- esp_hw_support
- soc