mirror of
https://github.com/espressif/esp-idf.git
synced 2026-04-27 19:13:21 +00:00
31 lines
1.1 KiB
YAML
31 lines
1.1 KiB
YAML
# Documentation: .gitlab/ci/README.md#manifest-file-to-control-the-buildtest-apps
|
|
|
|
components/freertos/test_apps/build_tests/freertos_build_test:
|
|
disable:
|
|
- if: CONFIG_NAME == "timers_disabled" and IDF_TARGET != "esp32"
|
|
- if: CONFIG_NAME == "smp" and IDF_TARGET not in ["esp32"]
|
|
depends_components:
|
|
- freertos
|
|
- esp_system # trigger on changes to idle / tick hooks, wdt, entry point to freertos code
|
|
- esp_hw_support # trigger on changes to cpu.c
|
|
|
|
components/freertos/test_apps/build_tests/orig_inc_path:
|
|
enable:
|
|
- if: IDF_TARGET in ["esp32"]
|
|
reason: The feature only depends on the build system, nothing target-specific that needs to be tested
|
|
depends_components:
|
|
- freertos
|
|
|
|
components/freertos/test_apps/freertos:
|
|
disable:
|
|
- if: CONFIG_NAME == "smp" and IDF_TARGET not in ["esp32"]
|
|
temporary: true
|
|
reason: target(s) not supported yet
|
|
- if: CONFIG_NAME == "psram" and SOC_SPIRAM_SUPPORTED != 1
|
|
depends_components:
|
|
- freertos
|
|
- esp_system # trigger on changes to idle / tick hooks, wdt, entry point to freertos code
|
|
- esp_hw_support # trigger on changes to cpu.c
|
|
- xtensa
|
|
- riscv
|