mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-30 18:57:19 +02:00
feat(storage): add dependencies for tests
This commit is contained in:
committed by
Martin Vychodil
parent
aca0d3ad17
commit
d5dc04693d
@ -1,13 +1,29 @@
|
|||||||
# Documentation: .gitlab/ci/README.md#manifest-file-to-control-the-buildtest-apps
|
# Documentation: .gitlab/ci/README.md#manifest-file-to-control-the-buildtest-apps
|
||||||
|
|
||||||
examples/storage/custom_flash_driver:
|
examples/storage/custom_flash_driver:
|
||||||
|
depends_components:
|
||||||
|
- fatfs
|
||||||
|
- vfs
|
||||||
|
- spi_flash
|
||||||
|
- driver
|
||||||
|
|
||||||
examples/storage/emmc:
|
examples/storage/emmc:
|
||||||
|
depends_components:
|
||||||
|
- sdmmc
|
||||||
|
- driver
|
||||||
|
- fatfs
|
||||||
|
- vfs
|
||||||
enable:
|
enable:
|
||||||
- if: IDF_TARGET == "esp32s3"
|
- if: IDF_TARGET == "esp32s3"
|
||||||
reason: only support on esp32s3
|
reason: only support on esp32s3
|
||||||
|
|
||||||
examples/storage/ext_flash_fatfs:
|
examples/storage/ext_flash_fatfs:
|
||||||
|
depends_components:
|
||||||
|
- fatfs
|
||||||
|
- vfs
|
||||||
|
- spi_flash
|
||||||
|
- driver
|
||||||
|
- esp_system
|
||||||
disable:
|
disable:
|
||||||
- if: IDF_TARGET == "esp32p4"
|
- if: IDF_TARGET == "esp32p4"
|
||||||
reason: not supported yet
|
reason: not supported yet
|
||||||
@ -17,42 +33,77 @@ examples/storage/ext_flash_fatfs:
|
|||||||
reason: lack of runners
|
reason: lack of runners
|
||||||
|
|
||||||
examples/storage/fatfsgen:
|
examples/storage/fatfsgen:
|
||||||
|
depends_components:
|
||||||
|
- fatfs
|
||||||
|
- vfs
|
||||||
|
- esp_system
|
||||||
disable_test:
|
disable_test:
|
||||||
- if: IDF_TARGET != "esp32"
|
- if: IDF_TARGET != "esp32"
|
||||||
reason: only one target needed
|
reason: only one target needed
|
||||||
|
|
||||||
examples/storage/nvs_rw_blob:
|
examples/storage/nvs_rw_blob:
|
||||||
|
depends_components:
|
||||||
|
- nvs_flash
|
||||||
|
- driver
|
||||||
|
- esp_system
|
||||||
|
|
||||||
examples/storage/nvs_rw_value:
|
examples/storage/nvs_rw_value:
|
||||||
|
depends_components:
|
||||||
|
- nvs_flash
|
||||||
|
- nvs_system
|
||||||
|
|
||||||
examples/storage/nvs_rw_value_cxx:
|
examples/storage/nvs_rw_value_cxx:
|
||||||
|
depends_components:
|
||||||
|
- nvs_flash
|
||||||
|
- nvs_system
|
||||||
|
|
||||||
examples/storage/nvsgen:
|
examples/storage/nvsgen:
|
||||||
|
depends_components:
|
||||||
|
- nvs_flash
|
||||||
disable_test:
|
disable_test:
|
||||||
- if: IDF_TARGET != "esp32"
|
- if: IDF_TARGET != "esp32"
|
||||||
reason: only one target needed
|
reason: only one target needed
|
||||||
|
|
||||||
examples/storage/partition_api/partition_find:
|
examples/storage/partition_api/partition_find:
|
||||||
|
depends_components:
|
||||||
|
- esp_partition
|
||||||
disable_test:
|
disable_test:
|
||||||
- if: IDF_TARGET not in ["esp32", "esp32c3"]
|
- if: IDF_TARGET not in ["esp32", "esp32c3"]
|
||||||
reason: only one target per arch needed
|
reason: only one target per arch needed
|
||||||
|
|
||||||
examples/storage/partition_api/partition_mmap:
|
examples/storage/partition_api/partition_mmap:
|
||||||
|
depends_components:
|
||||||
|
- esp_partition
|
||||||
disable_test:
|
disable_test:
|
||||||
- if: IDF_TARGET not in ["esp32", "esp32c3"]
|
- if: IDF_TARGET not in ["esp32", "esp32c3"]
|
||||||
reason: only one target per arch needed
|
reason: only one target per arch needed
|
||||||
|
|
||||||
examples/storage/partition_api/partition_ops:
|
examples/storage/partition_api/partition_ops:
|
||||||
|
depends_components:
|
||||||
|
- esp_partition
|
||||||
|
- spi_flash
|
||||||
disable_test:
|
disable_test:
|
||||||
- if: IDF_TARGET not in ["esp32", "esp32c3"]
|
- if: IDF_TARGET not in ["esp32", "esp32c3"]
|
||||||
reason: only one target per arch needed
|
reason: only one target per arch needed
|
||||||
|
|
||||||
examples/storage/parttool:
|
examples/storage/parttool:
|
||||||
|
depends_components:
|
||||||
|
- partition_table
|
||||||
disable_test:
|
disable_test:
|
||||||
- if: IDF_TARGET != "esp32"
|
- if: IDF_TARGET != "esp32"
|
||||||
reason: only one target needed
|
reason: only one target needed
|
||||||
|
|
||||||
examples/storage/perf_benchmark:
|
examples/storage/perf_benchmark:
|
||||||
|
depends_components:
|
||||||
|
- fatfs
|
||||||
|
- spi_flash
|
||||||
|
- vfs
|
||||||
|
- sdmmc
|
||||||
|
- spiffs
|
||||||
|
- soc
|
||||||
|
- wear_levelling
|
||||||
|
- esp_partition
|
||||||
|
- driver
|
||||||
disable:
|
disable:
|
||||||
- if: IDF_TARGET == "esp32p4" and CONFIG_NAME in ["sdmmc_1line", "sdmmc_4line", "sdspi_1line"]
|
- if: IDF_TARGET == "esp32p4" and CONFIG_NAME in ["sdmmc_1line", "sdmmc_4line", "sdspi_1line"]
|
||||||
temporary: true
|
temporary: true
|
||||||
@ -63,6 +114,10 @@ examples/storage/perf_benchmark:
|
|||||||
reason: SPIFLASH not supported on P4 yet, only build stage enabled # TODO: IDF-7499
|
reason: SPIFLASH not supported on P4 yet, only build stage enabled # TODO: IDF-7499
|
||||||
|
|
||||||
examples/storage/sd_card/sdmmc:
|
examples/storage/sd_card/sdmmc:
|
||||||
|
depends_components:
|
||||||
|
- vfs
|
||||||
|
- sdmmc
|
||||||
|
- driver
|
||||||
disable:
|
disable:
|
||||||
- if: SOC_SDMMC_HOST_SUPPORTED != 1
|
- if: SOC_SDMMC_HOST_SUPPORTED != 1
|
||||||
disable_test:
|
disable_test:
|
||||||
@ -71,6 +126,10 @@ examples/storage/sd_card/sdmmc:
|
|||||||
reason: lack of runners
|
reason: lack of runners
|
||||||
|
|
||||||
examples/storage/sd_card/sdspi:
|
examples/storage/sd_card/sdspi:
|
||||||
|
depends_components:
|
||||||
|
- vfs
|
||||||
|
- sdmmc
|
||||||
|
- driver
|
||||||
disable:
|
disable:
|
||||||
- if: SOC_GPSPI_SUPPORTED != 1
|
- if: SOC_GPSPI_SUPPORTED != 1
|
||||||
disable_test:
|
disable_test:
|
||||||
@ -79,16 +138,29 @@ examples/storage/sd_card/sdspi:
|
|||||||
reason: lack of runners
|
reason: lack of runners
|
||||||
|
|
||||||
examples/storage/semihost_vfs:
|
examples/storage/semihost_vfs:
|
||||||
|
depends_components:
|
||||||
|
- vfs
|
||||||
disable_test:
|
disable_test:
|
||||||
- if: IDF_TARGET not in ["esp32"]
|
- if: IDF_TARGET not in ["esp32"]
|
||||||
temporary: true
|
temporary: true
|
||||||
reason: lack of runners
|
reason: lack of runners
|
||||||
|
|
||||||
examples/storage/spiffs:
|
examples/storage/spiffs:
|
||||||
|
depends_components:
|
||||||
|
- spiffs
|
||||||
|
- vfs
|
||||||
|
|
||||||
examples/storage/spiffsgen:
|
examples/storage/spiffsgen:
|
||||||
|
depends_components:
|
||||||
|
- spiffs
|
||||||
|
- vfs
|
||||||
|
- mbedtls
|
||||||
disable_test:
|
disable_test:
|
||||||
- if: IDF_TARGET != "esp32"
|
- if: IDF_TARGET != "esp32"
|
||||||
reason: only one target needed
|
reason: only one target needed
|
||||||
|
|
||||||
examples/storage/wear_levelling:
|
examples/storage/wear_levelling:
|
||||||
|
depends_components:
|
||||||
|
- vfs
|
||||||
|
- wear_levelling
|
||||||
|
- fatfs
|
||||||
|
Reference in New Issue
Block a user