mirror of
https://github.com/espressif/esp-idf.git
synced 2026-04-27 19:13:21 +00:00
fe436d881e
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
14 lines
366 B
YAML
14 lines
366 B
YAML
# Documentation: .gitlab/ci/README.md#manifest-file-to-control-the-buildtest-apps
|
|
|
|
components/sdmmc/test_apps:
|
|
disable:
|
|
- if: SOC_SDMMC_HOST_SUPPORTED != 1
|
|
disable_test:
|
|
- if: IDF_TARGET not in ["esp32"]
|
|
temporary: false
|
|
reason: only one target required for running the test
|
|
depends_components:
|
|
- sdmmc
|
|
- esp_driver_sdmmc
|
|
- vfs
|