mirror of
https://github.com/espressif/esp-idf.git
synced 2025-10-03 18:40:59 +02:00
127 lines
3.1 KiB
YAML
127 lines
3.1 KiB
YAML
# Documentation: .gitlab/ci/README.md#manifest-file-to-control-the-buildtest-apps
|
|
|
|
examples/storage/custom_flash_driver:
|
|
depends_components:
|
|
- spi_flash
|
|
- driver
|
|
|
|
examples/storage/emmc:
|
|
depends_components:
|
|
- fatfs
|
|
- vfs
|
|
- sdmmc
|
|
- esp_driver_sdmmc
|
|
- esp_driver_sdspi
|
|
enable:
|
|
- if: IDF_TARGET in ["esp32s3", "esp32p4"]
|
|
reason: only support on esp32s3 and esp32p4
|
|
disable_test:
|
|
- if: IDF_TARGET == "esp32p4"
|
|
temporary: true
|
|
reason: lack of runners
|
|
|
|
examples/storage/partition_api/partition_find:
|
|
depends_components:
|
|
- esp_partition
|
|
disable_test:
|
|
- if: IDF_TARGET not in ["esp32", "esp32c3"]
|
|
reason: only one target per arch needed
|
|
|
|
examples/storage/partition_api/partition_mmap:
|
|
depends_components:
|
|
- esp_partition
|
|
disable_test:
|
|
- if: IDF_TARGET not in ["esp32", "esp32c3"]
|
|
reason: only one target per arch needed
|
|
|
|
examples/storage/partition_api/partition_ops:
|
|
depends_components:
|
|
- esp_partition
|
|
- spi_flash
|
|
disable_test:
|
|
- if: IDF_TARGET not in ["esp32", "esp32c3"]
|
|
reason: only one target per arch needed
|
|
|
|
examples/storage/parttool:
|
|
depends_components:
|
|
- partition_table
|
|
disable_test:
|
|
- if: IDF_TARGET != "esp32"
|
|
reason: only one target needed
|
|
|
|
examples/storage/perf_benchmark:
|
|
depends_components:
|
|
- fatfs
|
|
- spi_flash
|
|
- vfs
|
|
- sdmmc
|
|
- spiffs
|
|
- wear_levelling
|
|
- esp_partition
|
|
- esp_driver_sdmmc
|
|
disable:
|
|
- if: IDF_TARGET in ["esp32h21", "esp32h4"]
|
|
temporary: true
|
|
reason: not supported yet # TODO: [esp32h21] IDF-11609 [ESP32H4] IDF-12388
|
|
disable_test:
|
|
- if: IDF_TARGET == "esp32p4" and CONFIG_NAME in ["sdmmc_1line", "sdmmc_4line", "sdspi_1line"]
|
|
temporary: true
|
|
reason: lack of runners, build only # TODO: IDF-8970
|
|
|
|
examples/storage/sd_card/sdmmc:
|
|
depends_components:
|
|
- vfs
|
|
- sdmmc
|
|
- esp_driver_sdmmc
|
|
disable:
|
|
- if: SOC_SDMMC_HOST_SUPPORTED != 1
|
|
disable_test:
|
|
- if: IDF_TARGET not in ["esp32"]
|
|
temporary: true
|
|
reason: lack of runners
|
|
|
|
examples/storage/sd_card/sdspi:
|
|
depends_components:
|
|
- vfs
|
|
- sdmmc
|
|
- esp_driver_sdspi
|
|
disable:
|
|
- if: SOC_GPSPI_SUPPORTED != 1
|
|
disable_test:
|
|
- if: IDF_TARGET not in ["esp32", "esp32s3", "esp32c3", "esp32c5", "esp32p4"]
|
|
reason: needs special runner, select few typical targets for testing
|
|
|
|
examples/storage/semihost_vfs:
|
|
depends_components:
|
|
- vfs
|
|
disable_test:
|
|
- if: IDF_TARGET not in ["esp32"]
|
|
temporary: true
|
|
reason: lack of runners
|
|
|
|
examples/storage/spiffs:
|
|
depends_components:
|
|
- spiffs
|
|
- vfs
|
|
disable_test:
|
|
- if: IDF_TARGET not in ["esp32", "esp32c3"]
|
|
reason: only one target per arch needed
|
|
|
|
examples/storage/spiffsgen:
|
|
depends_components:
|
|
- spiffs
|
|
- vfs
|
|
- mbedtls
|
|
disable_test:
|
|
- if: IDF_TARGET != "esp32"
|
|
reason: only one target needed
|
|
|
|
examples/storage/wear_levelling:
|
|
depends_components:
|
|
- vfs
|
|
- wear_levelling
|
|
- fatfs
|
|
disable_test:
|
|
- if: IDF_TARGET not in ["esp32", "esp32c3"]
|
|
reason: only one target per arch needed
|