mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
19 lines
910 B
YAML
19 lines
910 B
YAML
# Documentation: .gitlab/ci/README.md#manifest-file-to-control-the-buildtest-apps
|
|
|
|
components/esp_rom/test_apps/linux_rom_apis:
|
|
enable:
|
|
- if: IDF_TARGET == "linux"
|
|
|
|
components/esp_rom/test_apps/rom_impl_components:
|
|
disable:
|
|
# For ROM impl build tests, disable them if none of the tested features are supported in the ROM
|
|
- if: CONFIG_NAME == "rom_impl_components" and ((ESP_ROM_HAS_HAL_WDT != 1 and ESP_ROM_HAS_HAL_SYSTIMER != 1) and (ESP_ROM_HAS_HEAP_TLSF != 1 and ESP_ROM_HAS_SPI_FLASH != 1))
|
|
- if: CONFIG_NAME == "no_rom_impl_components" and ((ESP_ROM_HAS_HAL_WDT != 1 and ESP_ROM_HAS_HAL_SYSTIMER != 1) and (ESP_ROM_HAS_HEAP_TLSF != 1 and ESP_ROM_HAS_SPI_FLASH != 1))
|
|
- if: SOC_WDT_SUPPORTED != 1
|
|
|
|
components/esp_rom/test_apps/rom_tests:
|
|
disable_test:
|
|
- if: IDF_TARGET in ["esp32", "esp32c2"]
|
|
temporary: false
|
|
reason: lack of memory for testing miniz compressing
|