mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
117 lines
2.9 KiB
YAML
117 lines
2.9 KiB
YAML
# Documentation: .gitlab/ci/README.md#manifest-file-to-control-the-buildtest-apps
|
|
|
|
components/driver/test_apps/dac_test_apps/legacy_dac_driver:
|
|
disable:
|
|
- if: SOC_DAC_SUPPORTED != 1
|
|
depends_components:
|
|
- esp_adc
|
|
|
|
components/driver/test_apps/i2c_test_apps:
|
|
disable:
|
|
- if: SOC_I2C_SUPPORTED != 1 # TODO: IDF-8070
|
|
|
|
components/driver/test_apps/i2s_test_apps/legacy_i2s_adc_dac:
|
|
disable:
|
|
- if: SOC_I2S_SUPPORTS_ADC_DAC != 1
|
|
|
|
components/driver/test_apps/i2s_test_apps/legacy_i2s_driver:
|
|
disable:
|
|
- if: SOC_I2S_SUPPORTED != 1
|
|
disable_test:
|
|
- if: IDF_TARGET == "esp32p4"
|
|
temporary: true
|
|
reason: lack of runners
|
|
|
|
components/driver/test_apps/ledc:
|
|
disable:
|
|
- if: SOC_LEDC_SUPPORTED != 1
|
|
|
|
components/driver/test_apps/legacy_adc_driver:
|
|
disable:
|
|
- if: SOC_ADC_SUPPORTED != 1
|
|
|
|
components/driver/test_apps/legacy_i2c_driver:
|
|
disable:
|
|
- if: IDF_TARGET == "esp32p4"
|
|
temporary: true
|
|
reason: not supported yet # TODO: IDF-8070
|
|
|
|
components/driver/test_apps/legacy_mcpwm_driver:
|
|
disable:
|
|
- if: SOC_MCPWM_SUPPORTED != 1
|
|
depends_filepatterns:
|
|
- components/driver/deprecated/**/*mcpwm*
|
|
|
|
components/driver/test_apps/legacy_pcnt_driver:
|
|
disable:
|
|
- if: SOC_PCNT_SUPPORTED != 1
|
|
depends_filepatterns:
|
|
- components/driver/deprecated/**/*pcnt*
|
|
|
|
components/driver/test_apps/legacy_rmt_driver:
|
|
disable:
|
|
- if: SOC_RMT_SUPPORTED != 1
|
|
depends_filepatterns:
|
|
- components/driver/deprecated/**/*rmt*
|
|
|
|
components/driver/test_apps/legacy_rtc_temp_driver:
|
|
disable:
|
|
- if: SOC_TEMP_SENSOR_SUPPORTED != 1
|
|
|
|
components/driver/test_apps/legacy_sigma_delta_driver:
|
|
disable:
|
|
- if: SOC_SDM_SUPPORTED != 1
|
|
depends_filepatterns:
|
|
- components/driver/deprecated/**/*sigma*
|
|
depends_components:
|
|
- esp_driver_gpio
|
|
|
|
components/driver/test_apps/legacy_timer_driver:
|
|
disable:
|
|
- if: SOC_GPTIMER_SUPPORTED != 1
|
|
depends_filepatterns:
|
|
- components/driver/deprecated/**/*timer*
|
|
|
|
components/driver/test_apps/parlio:
|
|
disable:
|
|
- if: SOC_PARLIO_SUPPORTED != 1
|
|
disable_test:
|
|
- if: IDF_TARGET == "esp32p4"
|
|
temporary: true
|
|
reason: lack of runner
|
|
|
|
components/driver/test_apps/rs485:
|
|
disable:
|
|
- if: SOC_UART_SUPPORTED != 1
|
|
disable_test:
|
|
- if: IDF_TARGET != "esp32"
|
|
temporary: true
|
|
reason: lack of runners
|
|
|
|
components/driver/test_apps/touch_sensor_v1:
|
|
disable:
|
|
- if: SOC_TOUCH_SENSOR_VERSION != 1
|
|
|
|
components/driver/test_apps/touch_sensor_v2:
|
|
disable:
|
|
- if: SOC_TOUCH_SENSOR_VERSION != 2
|
|
|
|
components/driver/test_apps/twai:
|
|
disable:
|
|
- if: SOC_TWAI_SUPPORTED != 1
|
|
|
|
components/driver/test_apps/uart:
|
|
disable:
|
|
- if: SOC_UART_SUPPORTED != 1
|
|
|
|
components/driver/test_apps/usb_serial_jtag:
|
|
disable:
|
|
- if: SOC_USB_SERIAL_JTAG_SUPPORTED != 1
|
|
depends_filepatterns:
|
|
- components/driver/usb_serial_jtag/**/*
|
|
depends_components:
|
|
- hal
|
|
- esp_hw_support # for clock
|
|
- vfs
|
|
- esp_driver_gpio
|