mirror of
https://github.com/espressif/esp-idf.git
synced 2026-09-22 13:01:16 +03:00
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
30 lines
616 B
YAML
30 lines
616 B
YAML
components/esp_driver_cam/test_apps/csi:
|
|
disable:
|
|
- if: SOC_MIPI_CSI_SUPPORTED != 1
|
|
depends_components:
|
|
- esp_driver_cam
|
|
- esp_driver_dma
|
|
- esp_hal_cam
|
|
- esp_hw_support
|
|
- soc
|
|
|
|
components/esp_driver_cam/test_apps/dvp:
|
|
disable:
|
|
- if: SOC_LCDCAM_CAM_SUPPORTED != 1
|
|
depends_components:
|
|
- esp_driver_cam
|
|
- esp_driver_dma
|
|
- esp_hal_cam
|
|
- esp_hw_support
|
|
- soc
|
|
|
|
components/esp_driver_cam/test_apps/isp_dvp:
|
|
disable:
|
|
- if: SOC_ISP_DVP_SUPPORTED != 1
|
|
depends_components:
|
|
- esp_driver_cam
|
|
- esp_driver_dma
|
|
- esp_hal_cam
|
|
- esp_hw_support
|
|
- soc
|