mirror of
https://github.com/espressif/esp-idf.git
synced 2026-04-27 19:13:21 +00:00
58 lines
1.9 KiB
YAML
58 lines
1.9 KiB
YAML
# Documentation: .gitlab/ci/README.md#manifest-file-to-control-the-buildtest-apps
|
|
|
|
components/esp_hw_support/test_apps/host_test_linux:
|
|
enable:
|
|
- if: IDF_TARGET == "linux"
|
|
|
|
components/esp_hw_support/test_apps/mspi:
|
|
disable:
|
|
- if: IDF_TARGET not in ["esp32s3", "esp32p4"]
|
|
|
|
components/esp_hw_support/test_apps/mspi_psram_with_dfs:
|
|
disable:
|
|
- if: IDF_TARGET != "esp32s3"
|
|
|
|
components/esp_hw_support/test_apps/rtc_8md256:
|
|
disable:
|
|
- if: SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256 != 1
|
|
|
|
components/esp_hw_support/test_apps/rtc_clk:
|
|
disable:
|
|
- if: SOC_CLK_TREE_SUPPORTED != 1
|
|
|
|
components/esp_hw_support/test_apps/rtc_power_modes:
|
|
enable:
|
|
- if: IDF_TARGET in ["esp32s2", "esp32s3", "esp32c2", "esp32c3"]
|
|
temporary: true
|
|
reason: the other targets are not tested yet
|
|
|
|
components/esp_hw_support/test_apps/sleep_retention:
|
|
enable:
|
|
- if: SOC_PAU_SUPPORTED == 1 and SOC_LIGHT_SLEEP_SUPPORTED == 1 and SOC_PM_CPU_RETENTION_BY_SW == 1 and CONFIG_NAME != "xip_psram"
|
|
- if: SOC_PAU_SUPPORTED == 1 and SOC_LIGHT_SLEEP_SUPPORTED == 1 and SOC_PM_CPU_RETENTION_BY_SW == 1 and (SOC_SPIRAM_XIP_SUPPORTED == 1 and CONFIG_NAME == "xip_psram")
|
|
|
|
components/esp_hw_support/test_apps/usb_phy:
|
|
enable:
|
|
- if: SOC_USB_OTG_SUPPORTED == 1
|
|
depends_filepatterns:
|
|
- components/hal/usb*.c
|
|
- components/hal/include/hal/usb*.h
|
|
- components/hal/esp32*/include/hal/usb*.h
|
|
- components/soc/esp32*/usb*.c
|
|
- components/soc/include/soc/usb*.h
|
|
- components/soc/esp32*/include/soc/usb_dwc_*.h
|
|
- components/soc/esp32*/include/soc/usb_wrap_*.h
|
|
- components/esp_hw_support/**/usb_phy.*
|
|
|
|
components/esp_hw_support/test_apps/vad_wakeup:
|
|
disable:
|
|
- if: SOC_LP_VAD_SUPPORTED != 1
|
|
|
|
components/esp_hw_support/test_apps/wakeup_tests:
|
|
enable:
|
|
- if: SOC_DEEP_SLEEP_SUPPORTED == 1 and SOC_LIGHT_SLEEP_SUPPORTED == 1
|
|
disable_test:
|
|
- if: IDF_TARGET in ["esp32c61", "esp32h21", "esp32h4"]
|
|
temporary: true
|
|
reason: lack of runners
|