2022-07-12 22:34:02 -04:00
|
|
|
# Documentation: .gitlab/ci/README.md#manifest-file-to-control-the-buildtest-apps
|
|
|
|
|
2023-08-16 22:45:23 -04:00
|
|
|
components/spi_flash/test_apps/esp_flash:
|
|
|
|
disable:
|
|
|
|
- if: IDF_TARGET == "esp32p4"
|
|
|
|
temporary: true
|
|
|
|
reason: target esp32p4 is not supported yet # TODO: IDF-7499
|
2023-09-27 06:45:09 -04:00
|
|
|
depends_filepatterns:
|
|
|
|
- components/driver/gpio/**/*
|
|
|
|
- components/driver/spi/**/*
|
|
|
|
- components/bootloader_support/bootloader_flash/**/*
|
|
|
|
depends_components:
|
|
|
|
- esp_mm
|
|
|
|
- esp_psram
|
|
|
|
- spi_flash
|
|
|
|
- esptool_py # Some flash related kconfigs are listed here.
|
2023-08-16 22:45:23 -04:00
|
|
|
|
2022-07-14 00:29:43 -04:00
|
|
|
components/spi_flash/test_apps/flash_encryption:
|
|
|
|
disable_test:
|
2023-01-10 00:59:46 -05:00
|
|
|
- if: IDF_TARGET in ["esp32c2", "esp32s2", "esp32c6", "esp32h2"]
|
2022-07-14 00:29:43 -04:00
|
|
|
temporary: true
|
|
|
|
reason: No runners # IDF-5634
|
2023-08-16 22:45:23 -04:00
|
|
|
disable:
|
|
|
|
- if: IDF_TARGET == "esp32p4"
|
|
|
|
temporary: true
|
|
|
|
reason: target esp32p4 is not supported yet # TODO: IDF-7545
|
2023-09-27 06:45:09 -04:00
|
|
|
depends_components:
|
|
|
|
- esp_mm
|
|
|
|
- spi_flash
|
2023-05-11 08:10:30 -04:00
|
|
|
|
|
|
|
components/spi_flash/test_apps/flash_suspend:
|
|
|
|
disable:
|
|
|
|
- if: SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND != 1
|
2023-08-16 22:45:23 -04:00
|
|
|
- if: IDF_TARGET == "esp32p4"
|
|
|
|
temporary: true
|
|
|
|
reason: target esp32p4 is not supported yet # TODO: IDF-7499
|
2023-05-11 08:10:30 -04:00
|
|
|
disable_test:
|
|
|
|
- if: IDF_TARGET != "esp32c3"
|
|
|
|
temporary: true
|
|
|
|
reason: lack of runners
|
2023-09-27 06:45:09 -04:00
|
|
|
depends_filepatterns:
|
|
|
|
- components/driver/gptimer/**/*
|
|
|
|
depends_components:
|
|
|
|
- spi_flash
|
2023-05-14 22:34:07 -04:00
|
|
|
|
|
|
|
components/spi_flash/test_apps/mspi_test:
|
|
|
|
disable:
|
|
|
|
- if: CONFIG_NAME == "psram" and SOC_SPIRAM_SUPPORTED != 1
|
|
|
|
- if: CONFIG_NAME == "xip_psram" and SOC_SPIRAM_SUPPORTED != 1
|
2023-08-27 22:20:56 -04:00
|
|
|
- if: CONFIG_NAME == "psram" and IDF_TARGET in ["esp32p4"]
|
|
|
|
temporary: true
|
|
|
|
reason: not supported yet #TODO: IDF-7499 for p4
|
|
|
|
- if: CONFIG_NAME == "xip_psram" and IDF_TARGET in ["esp32p4"]
|
|
|
|
temporary: true
|
|
|
|
reason: not supported yet #TODO: IDF-7556 for p4
|
2023-09-27 06:45:09 -04:00
|
|
|
depends_filepatterns:
|
|
|
|
- components/driver/gpio/**/*
|
|
|
|
- components/driver/spi/**/*
|
|
|
|
- components/bootloader_support/bootloader_flash/**/*
|
|
|
|
depends_components:
|
|
|
|
- esp_mm
|
|
|
|
- esp_psram
|
|
|
|
- spi_flash
|
|
|
|
- esptool_py # Some flash related kconfigs are listed here.
|