2024-08-05 14:09:09 +02:00
|
|
|
# Documentation: .gitlab/ci/README.md#manifest-file-to-control-the-buildtest-apps
|
|
|
|
|
|
|
|
examples/storage/fatfs:
|
|
|
|
depends_components:
|
|
|
|
- fatfs
|
|
|
|
- vfs
|
|
|
|
disable_test:
|
|
|
|
- if: IDF_TARGET != "esp32"
|
|
|
|
reason: only one target needed
|
2024-08-05 14:16:58 +02:00
|
|
|
|
|
|
|
examples/storage/fatfs/ext_flash:
|
|
|
|
depends_components:
|
|
|
|
- fatfs
|
|
|
|
- vfs
|
|
|
|
- spi_flash
|
|
|
|
- driver
|
|
|
|
disable:
|
2025-01-22 10:41:07 +08:00
|
|
|
- if: IDF_TARGET in ["esp32p4", "esp32c5", "esp32c61", "esp32h21"]
|
2024-08-05 14:16:58 +02:00
|
|
|
temporary: true
|
2025-01-22 10:41:07 +08:00
|
|
|
reason: not supported on p4 and c5 # TODO: [ESP32C5] IDF-8715, [ESP32C61] IDF-9314, [ESP32H21] IDF-11609
|
2024-08-05 14:16:58 +02:00
|
|
|
disable_test:
|
|
|
|
- if: IDF_TARGET not in ["esp32"]
|
|
|
|
temporary: true
|
|
|
|
reason: lack of runners
|