57 lines
1.9 KiB
YAML
57 lines
1.9 KiB
YAML
# Documentation: .gitlab/ci/README.md#manifest-file-to-control-the-buildtest-apps
|
|
|
|
components/esp_hw_support/test_apps/dma:
|
|
disable:
|
|
- if: IDF_TARGET in ["esp32"]
|
|
temporary: false
|
|
reason: No general DMA controller on ESP32
|
|
depends_filepatterns:
|
|
- components/esp_hw_support/dma/**/*
|
|
|
|
components/esp_hw_support/test_apps/dma2d:
|
|
disable:
|
|
- if: SOC_DMA2D_SUPPORTED != 1
|
|
depends_filepatterns:
|
|
- components/esp_hw_support/dma/**/*
|
|
|
|
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: IDF_TARGET in ["esp32c6", "esp32h2", "esp32p4", "esp32c5", "esp32c61", "esp32h21", "esp32h4"]
|
|
temporary: true
|
|
reason: Unsupported on C6 for now. #TODO IDF-5645, TODO IDF-7514, TODO C5 IDF-8667, TODO C61 IDF-9274, TODO H21 IDF-11548 [ESP32H4] IDF-12313
|
|
|
|
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 CONFIG_NAME != "xip_psram"
|
|
- if: SOC_PAU_SUPPORTED == 1 and SOC_LIGHT_SLEEP_SUPPORTED == 1 and (SOC_SPIRAM_XIP_SUPPORTED == 1 and CONFIG_NAME == "xip_psram")
|
|
|
|
components/esp_hw_support/test_apps/vad_wakeup:
|
|
disable:
|
|
- if: SOC_LP_VAD_SUPPORTED != 1
|
|
|
|
components/esp_hw_support/test_apps/wakeup_tests:
|
|
disable:
|
|
- if: IDF_TARGET in ["esp32c5", "esp32p4", "linux", "esp32c61", "esp32h21", "esp32h4"] # TODO: PM-337
|