2022-07-13 10:34:02 +08:00
# Documentation: .gitlab/ci/README.md#manifest-file-to-control-the-buildtest-apps
examples/storage/custom_flash_driver :
2023-10-09 10:55:42 +02:00
depends_components :
- spi_flash
- driver
2022-07-13 10:34:02 +08:00
2022-12-22 15:49:03 +08:00
examples/storage/emmc :
2023-10-09 10:55:42 +02:00
depends_components :
- fatfs
- vfs
2023-11-16 15:17:04 +08:00
- sdmmc
2023-11-10 15:52:25 +08:00
- esp_driver_sdmmc
2023-11-16 15:17:04 +08:00
- esp_driver_sdspi
2022-12-22 15:49:03 +08:00
enable :
- if : IDF_TARGET == "esp32s3"
reason : only support on esp32s3
2024-12-30 18:59:08 +05:30
examples/storage/nvs_bootloader :
depends_components :
- nvs_flash
- nvs_sec_provider
disable :
- if : CONFIG_NAME == "nvs_enc_flash_enc" and (SOC_AES_SUPPORTED != 1 and ESP_ROM_HAS_MBEDTLS_CRYPTO_LIB != 1)
- if : CONFIG_NAME == "nvs_enc_hmac" and (SOC_HMAC_SUPPORTED != 1 or (SOC_HMAC_SUPPORTED == 1 and (SOC_AES_SUPPORTED != 1 and ESP_ROM_HAS_MBEDTLS_CRYPTO_LIB != 1)))
reason : As of now in such cases, we do not have any way to perform AES operations in the bootloader build
2022-07-13 10:34:02 +08:00
examples/storage/nvs_rw_blob :
2023-10-09 10:55:42 +02:00
depends_components :
- nvs_flash
- driver
2023-10-16 08:20:08 +02:00
disable_test :
- if : IDF_TARGET not in ["esp32", "esp32c3"]
reason : only one target per arch needed
2022-07-13 10:34:02 +08:00
examples/storage/nvs_rw_value :
2023-10-09 10:55:42 +02:00
depends_components :
- nvs_flash
2023-10-16 08:20:08 +02:00
disable_test :
- if : IDF_TARGET not in ["esp32", "esp32c3"]
reason : only one target per arch needed
2022-07-13 10:34:02 +08:00
examples/storage/nvs_rw_value_cxx :
2023-10-09 10:55:42 +02:00
depends_components :
- nvs_flash
2023-10-16 08:20:08 +02:00
disable_test :
- if : IDF_TARGET not in ["esp32", "esp32c3"]
reason : only one target per arch needed
2022-07-13 10:34:02 +08:00
2023-08-04 10:46:58 +02:00
examples/storage/nvsgen :
2023-10-09 10:55:42 +02:00
depends_components :
- nvs_flash
2023-08-04 10:46:58 +02:00
disable_test :
2023-10-06 11:35:44 +02:00
- if : IDF_TARGET != "esp32"
reason : only one target needed
2023-08-04 10:46:58 +02:00
2022-07-13 10:34:02 +08:00
examples/storage/partition_api/partition_find :
2023-10-09 10:55:42 +02:00
depends_components :
- esp_partition
2022-07-13 10:34:02 +08:00
disable_test :
2023-10-06 11:35:44 +02:00
- if : IDF_TARGET not in ["esp32", "esp32c3"]
reason : only one target per arch needed
2022-07-13 10:34:02 +08:00
examples/storage/partition_api/partition_mmap :
2023-10-09 10:55:42 +02:00
depends_components :
- esp_partition
2022-07-13 10:34:02 +08:00
disable_test :
2023-10-06 11:35:44 +02:00
- if : IDF_TARGET not in ["esp32", "esp32c3"]
reason : only one target per arch needed
2022-07-13 10:34:02 +08:00
examples/storage/partition_api/partition_ops :
2023-10-09 10:55:42 +02:00
depends_components :
- esp_partition
- spi_flash
2022-07-13 10:34:02 +08:00
disable_test :
2023-10-06 11:35:44 +02:00
- if : IDF_TARGET not in ["esp32", "esp32c3"]
reason : only one target per arch needed
2022-07-13 10:34:02 +08:00
examples/storage/parttool :
2023-10-09 10:55:42 +02:00
depends_components :
- partition_table
2022-07-13 10:34:02 +08:00
disable_test :
2023-10-06 11:35:44 +02:00
- if : IDF_TARGET != "esp32"
reason : only one target needed
2022-07-13 10:34:02 +08:00
2023-08-17 10:45:23 +08:00
examples/storage/perf_benchmark :
2023-10-09 10:55:42 +02:00
depends_components :
- fatfs
- spi_flash
- vfs
- sdmmc
- spiffs
- wear_levelling
- esp_partition
2023-11-10 15:52:25 +08:00
- esp_driver_sdmmc
2025-01-22 10:41:07 +08:00
disable :
- if : IDF_TARGET == "esp32h21"
temporary : true
reason: not supported yet # TODO : [ esp32h21] IDF-11609
2023-08-29 12:43:58 +02:00
disable_test :
2024-05-08 11:54:11 +02:00
- if : IDF_TARGET == "esp32p4" and CONFIG_NAME in ["sdmmc_1line", "sdmmc_4line", "sdspi_1line"]
2023-08-29 12:43:58 +02:00
temporary : true
2024-05-08 11:54:11 +02:00
reason: lack of runners, build only # TODO : IDF-8970
2023-08-17 10:45:23 +08:00
2022-07-13 10:34:02 +08:00
examples/storage/sd_card/sdmmc :
2023-10-09 10:55:42 +02:00
depends_components :
- vfs
- sdmmc
2023-11-10 15:52:25 +08:00
- esp_driver_sdmmc
2022-07-13 10:34:02 +08:00
disable :
- if : SOC_SDMMC_HOST_SUPPORTED != 1
disable_test :
2023-10-06 11:35:44 +02:00
- if : IDF_TARGET not in ["esp32"]
2022-07-13 10:34:02 +08:00
temporary : true
reason : lack of runners
examples/storage/sd_card/sdspi :
2023-10-09 10:55:42 +02:00
depends_components :
- vfs
- sdmmc
2023-11-16 15:17:04 +08:00
- esp_driver_sdspi
2023-01-10 13:59:46 +08:00
disable :
2023-10-13 15:44:15 +08:00
- if : SOC_GPSPI_SUPPORTED != 1
2022-07-13 10:34:02 +08:00
disable_test :
2024-08-12 16:58:18 +08:00
- if : IDF_TARGET not in ["esp32", "esp32s3", "esp32c3", "esp32c5", "esp32p4"]
2024-08-08 16:23:30 +08:00
reason : needs special runner, select few typical targets for testing
2022-07-13 10:34:02 +08:00
examples/storage/semihost_vfs :
2023-10-09 10:55:42 +02:00
depends_components :
- vfs
2022-07-13 10:34:02 +08:00
disable_test :
2023-10-06 11:35:44 +02:00
- if : IDF_TARGET not in ["esp32"]
2022-07-13 10:34:02 +08:00
temporary : true
reason : lack of runners
examples/storage/spiffs :
2023-10-09 10:55:42 +02:00
depends_components :
- spiffs
- vfs
2023-10-16 08:20:08 +02:00
disable_test :
- if : IDF_TARGET not in ["esp32", "esp32c3"]
reason : only one target per arch needed
2022-07-13 10:34:02 +08:00
examples/storage/spiffsgen :
2023-10-09 10:55:42 +02:00
depends_components :
- spiffs
- vfs
- mbedtls
2022-07-13 10:34:02 +08:00
disable_test :
2023-10-06 11:35:44 +02:00
- if : IDF_TARGET != "esp32"
reason : only one target needed
2022-07-13 10:34:02 +08:00
examples/storage/wear_levelling :
2023-10-09 10:55:42 +02:00
depends_components :
- vfs
- wear_levelling
- fatfs
2023-10-16 08:20:08 +02:00
disable_test :
- if : IDF_TARGET not in ["esp32", "esp32c3"]
reason : only one target per arch needed