kopia lustrzana https://github.com/espressif/esp-idf
155 wiersze
3.7 KiB
YAML
155 wiersze
3.7 KiB
YAML
# Documentation: .gitlab/ci/README.md#manifest-file-to-control-the-buildtest-apps
|
|
|
|
examples/storage/custom_flash_driver:
|
|
depends_components:
|
|
- spi_flash
|
|
- driver
|
|
disable_test:
|
|
- if: IDF_TARGET not in ["esp32", "esp32c3"]
|
|
reason: only one target per arch needed
|
|
|
|
examples/storage/emmc:
|
|
depends_components:
|
|
- fatfs
|
|
- vfs
|
|
- sdmmc
|
|
- esp_driver_sdmmc
|
|
- esp_driver_sdspi
|
|
enable:
|
|
- if: IDF_TARGET == "esp32s3"
|
|
reason: only support on esp32s3
|
|
|
|
examples/storage/nvs_rw_blob:
|
|
depends_components:
|
|
- nvs_flash
|
|
- driver
|
|
disable_test:
|
|
- if: IDF_TARGET not in ["esp32", "esp32c3"]
|
|
reason: only one target per arch needed
|
|
|
|
examples/storage/nvs_rw_value:
|
|
depends_components:
|
|
- nvs_flash
|
|
disable_test:
|
|
- if: IDF_TARGET not in ["esp32", "esp32c3"]
|
|
reason: only one target per arch needed
|
|
|
|
examples/storage/nvs_rw_value_cxx:
|
|
depends_components:
|
|
- nvs_flash
|
|
disable_test:
|
|
- if: IDF_TARGET not in ["esp32", "esp32c3"]
|
|
reason: only one target per arch needed
|
|
|
|
examples/storage/nvsgen:
|
|
depends_components:
|
|
- nvs_flash
|
|
disable_test:
|
|
- if: IDF_TARGET != "esp32"
|
|
reason: only one target needed
|
|
|
|
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 ["esp32c5", "esp32c61"]
|
|
temporary: true
|
|
reason: not supported yet # TODO: [ESP32C5] IDF-8704, IDF-10314, [ESP32C61] IDF-9314
|
|
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
|