2022-07-12 22:34:02 -04:00
|
|
|
# Documentation: .gitlab/ci/README.md#manifest-file-to-control-the-buildtest-apps
|
|
|
|
|
2023-02-06 10:04:11 -05:00
|
|
|
examples/system/app_trace_basic:
|
|
|
|
disable:
|
2024-08-26 07:06:03 -04:00
|
|
|
- if: IDF_TARGET in ["esp32c6", "esp32h2", "esp32p4", "esp32c5", "esp32c61"]
|
2022-07-12 22:34:02 -04:00
|
|
|
temporary: true
|
2024-08-26 07:06:03 -04:00
|
|
|
reason: targets not supported yet, TODO[C61] IDF-9264 IDF-10992
|
2022-07-12 22:34:02 -04:00
|
|
|
|
2023-10-18 02:39:33 -04:00
|
|
|
examples/system/base_mac_address:
|
2024-08-26 07:06:03 -04:00
|
|
|
disable_test:
|
|
|
|
- if: IDF_TARGET in ["esp32c61"]
|
|
|
|
temporary: true
|
|
|
|
reason: test failed # TODO: IDF-10956
|
2023-10-18 02:39:33 -04:00
|
|
|
depends_components:
|
|
|
|
- esp_hw_support
|
|
|
|
|
2022-07-12 22:34:02 -04:00
|
|
|
examples/system/console/advanced:
|
|
|
|
disable_test:
|
2024-04-05 06:30:17 -04:00
|
|
|
- if: IDF_TARGET not in ["esp32", "esp32c3"] # IDF-9120 and IDF-9133
|
2023-03-24 08:50:48 -04:00
|
|
|
reason: Sufficient to run this app on one chip with each architecture
|
2023-10-18 02:39:33 -04:00
|
|
|
depends_components:
|
|
|
|
- console
|
|
|
|
- vfs
|
2022-07-12 22:34:02 -04:00
|
|
|
|
|
|
|
examples/system/console/basic:
|
|
|
|
disable_test:
|
2023-03-24 08:50:48 -04:00
|
|
|
- if: IDF_TARGET not in ["esp32", "esp32c3"]
|
|
|
|
reason: Sufficient to run this app on one chip with each architecture
|
2023-10-18 02:39:33 -04:00
|
|
|
depends_components:
|
|
|
|
- console
|
|
|
|
- vfs
|
2022-07-12 22:34:02 -04:00
|
|
|
|
2023-08-16 22:45:23 -04:00
|
|
|
examples/system/deep_sleep:
|
|
|
|
disable:
|
2024-02-01 05:28:28 -05:00
|
|
|
- if: SOC_DEEP_SLEEP_SUPPORTED != 1
|
2023-08-16 22:45:23 -04:00
|
|
|
|
2022-10-11 22:03:47 -04:00
|
|
|
examples/system/deep_sleep_wake_stub:
|
|
|
|
disable:
|
2024-08-21 02:54:35 -04:00
|
|
|
- if: IDF_TARGET in ["esp32c2", "esp32p4", "esp32c61"]
|
2022-10-11 22:03:47 -04:00
|
|
|
temporary: true
|
2024-08-21 02:54:35 -04:00
|
|
|
reason: target(s) is not supported yet # TODO: [esp32c61] IDF-9245
|
2022-10-11 22:03:47 -04:00
|
|
|
|
2023-10-18 02:39:33 -04:00
|
|
|
examples/system/efuse:
|
2024-04-20 06:19:31 -04:00
|
|
|
enable:
|
|
|
|
- if: INCLUDE_DEFAULT == 1 or IDF_TARGET == "linux"
|
2023-11-27 08:03:30 -05:00
|
|
|
disable:
|
2024-04-20 06:19:31 -04:00
|
|
|
- if: IDF_TARGET not in ["esp32", "linux"] and NIGHTLY_RUN != "1"
|
|
|
|
- if: IDF_TARGET == "linux" and CONFIG_NAME == "virt_flash_enc"
|
|
|
|
- if: IDF_TARGET == "linux" and CONFIG_NAME == "virt_flash_enc_release"
|
|
|
|
- if: IDF_TARGET == "linux" and CONFIG_NAME == "virt_sb_v2_and_fe"
|
|
|
|
- if: IDF_TARGET == "linux" and CONFIG_NAME == "virt_secure_boot_v2"
|
|
|
|
reason: Security features are not yet supported for Linux.
|
2023-10-18 02:39:33 -04:00
|
|
|
depends_components:
|
|
|
|
- efuse
|
|
|
|
- bootloader_support
|
|
|
|
|
2022-07-12 22:34:02 -04:00
|
|
|
examples/system/esp_timer:
|
2022-10-27 06:55:07 -04:00
|
|
|
disable:
|
2024-02-01 05:28:28 -05:00
|
|
|
- if: SOC_LIGHT_SLEEP_SUPPORTED != 1
|
2023-10-18 02:39:33 -04:00
|
|
|
depends_components:
|
|
|
|
- esp_timer
|
2022-07-12 22:34:02 -04:00
|
|
|
|
2023-01-10 00:59:46 -05:00
|
|
|
examples/system/eventfd:
|
|
|
|
disable:
|
2023-11-27 08:03:30 -05:00
|
|
|
- if: SOC_GPTIMER_SUPPORTED != 1 and (IDF_TARGET != "esp32" and (NIGHTLY_RUN != "1" or IDF_TARGET == "linux"))
|
|
|
|
reason: no target specific functionality, testing on a single target is sufficient
|
2023-10-18 02:39:33 -04:00
|
|
|
depends_components:
|
|
|
|
- vfs
|
2023-10-27 01:57:39 -04:00
|
|
|
- esp_driver_gptimer
|
2023-01-10 00:59:46 -05:00
|
|
|
|
2022-07-12 22:34:02 -04:00
|
|
|
examples/system/flash_suspend:
|
|
|
|
enable:
|
|
|
|
- if: IDF_TARGET == "esp32c3"
|
|
|
|
temporary: true
|
|
|
|
reason: the other targets are not tested yet
|
|
|
|
|
2024-05-05 23:35:48 -04:00
|
|
|
examples/system/freertos/basic_freertos_smp_usage:
|
|
|
|
enable:
|
|
|
|
- if: IDF_TARGET == "esp32c3" or IDF_TARGET == "esp32s3"
|
|
|
|
reason: no target specific functionality, testing on a single core target and a multiple core target is sufficient
|
|
|
|
depends_components:
|
|
|
|
- freertos
|
|
|
|
- console
|
|
|
|
- esp_timer
|
|
|
|
|
|
|
|
examples/system/freertos/real_time_stats:
|
2023-11-27 08:03:30 -05:00
|
|
|
disable:
|
|
|
|
- if: IDF_TARGET != "esp32" and (NIGHTLY_RUN != "1" or IDF_TARGET == "linux")
|
2023-10-18 02:39:33 -04:00
|
|
|
reason: no target specific functionality, testing on a single target is sufficient
|
|
|
|
depends_components:
|
|
|
|
- freertos
|
|
|
|
|
2022-07-12 22:34:02 -04:00
|
|
|
examples/system/gcov:
|
|
|
|
disable_test:
|
2022-07-22 09:33:19 -04:00
|
|
|
- if: IDF_TARGET != "esp32"
|
2022-07-12 22:34:02 -04:00
|
|
|
temporary: true
|
|
|
|
reason: lack of runners
|
|
|
|
|
2023-08-16 22:45:23 -04:00
|
|
|
examples/system/gdbstub:
|
|
|
|
disable:
|
|
|
|
- if: IDF_TARGET == "esp32p4"
|
|
|
|
temporary: true
|
|
|
|
reason: not supported yet #TODO: IDF-7510
|
|
|
|
|
2022-07-12 22:34:02 -04:00
|
|
|
examples/system/heap_task_tracking:
|
2023-11-27 08:03:30 -05:00
|
|
|
disable:
|
|
|
|
- if: IDF_TARGET != "esp32c3" and (NIGHTLY_RUN != "1" or IDF_TARGET == "linux")
|
2023-10-18 02:39:33 -04:00
|
|
|
reason: no target specific functionality, testing on a single target is sufficient
|
|
|
|
depends_components:
|
|
|
|
- heap
|
2022-07-12 22:34:02 -04:00
|
|
|
|
|
|
|
examples/system/himem:
|
|
|
|
enable:
|
|
|
|
- if: IDF_TARGET == "esp32"
|
2023-10-18 02:39:33 -04:00
|
|
|
reason: Feature is only needed/supported on ESP32
|
2022-07-12 22:34:02 -04:00
|
|
|
|
2023-09-06 07:33:39 -04:00
|
|
|
examples/system/ipc/ipc_isr/riscv:
|
2022-07-12 22:34:02 -04:00
|
|
|
enable:
|
2023-10-18 02:39:33 -04:00
|
|
|
- if: IDF_TARGET_ARCH_RISCV == 1 and ESP_IPC_ISR_ENABLE == 1
|
2023-09-06 07:33:39 -04:00
|
|
|
reason: The test is intended only for multi-core chips
|
2023-10-18 02:39:33 -04:00
|
|
|
disable_test:
|
|
|
|
- if: IDF_TARGET == "esp32p4"
|
|
|
|
temporary: true
|
|
|
|
reason: lack of runners
|
|
|
|
depends_components:
|
|
|
|
- esp_system
|
2023-09-06 07:33:39 -04:00
|
|
|
|
|
|
|
examples/system/ipc/ipc_isr/xtensa:
|
|
|
|
enable:
|
2023-10-18 02:39:33 -04:00
|
|
|
- if: IDF_TARGET_ARCH_XTENSA == 1 and ESP_IPC_ISR_ENABLE == 1
|
2023-09-06 07:33:39 -04:00
|
|
|
reason: The test is intended only for multi-core chips
|
2023-10-18 02:39:33 -04:00
|
|
|
depends_components:
|
|
|
|
- esp_system
|
2022-07-12 22:34:02 -04:00
|
|
|
|
2023-08-16 22:45:23 -04:00
|
|
|
examples/system/light_sleep:
|
|
|
|
disable:
|
2024-02-01 05:28:28 -05:00
|
|
|
- if: SOC_LIGHT_SLEEP_SUPPORTED != 1
|
2023-08-16 22:45:23 -04:00
|
|
|
|
2024-08-12 01:57:46 -04:00
|
|
|
examples/system/nmi_isr:
|
|
|
|
enable:
|
|
|
|
- if: IDF_TARGET_ARCH_XTENSA == 1
|
|
|
|
reason: test NMI for Xtensa targets only
|
|
|
|
|
2022-07-12 22:34:02 -04:00
|
|
|
examples/system/ota/advanced_https_ota:
|
2022-10-27 06:55:07 -04:00
|
|
|
disable:
|
2024-08-07 04:29:55 -04:00
|
|
|
- if: IDF_TARGET in ["esp32h2", "esp32c61"]
|
2022-10-27 06:55:07 -04:00
|
|
|
temporary: true
|
2024-08-07 04:29:55 -04:00
|
|
|
reason: target esp32h2 esp32c61 is not supported yet
|
2022-07-12 22:34:02 -04:00
|
|
|
disable_test:
|
2024-01-30 05:42:22 -05:00
|
|
|
- if: IDF_TARGET not in ["esp32", "esp32c3", "esp32s3"]
|
2022-07-12 22:34:02 -04:00
|
|
|
temporary: true
|
|
|
|
reason: lack of runners
|
2023-11-30 11:01:23 -05:00
|
|
|
depends_components:
|
|
|
|
- app_update
|
|
|
|
- esp_https_ota
|
2024-01-30 05:42:22 -05:00
|
|
|
- esp_http_client
|
|
|
|
# different configs need different components
|
2023-11-30 11:01:23 -05:00
|
|
|
- esp_eth
|
2024-01-30 05:42:22 -05:00
|
|
|
- esp_wifi
|
|
|
|
- esp_phy
|
|
|
|
- bt
|
2024-05-07 05:22:08 -04:00
|
|
|
- protocol_examples_common
|
2022-07-12 22:34:02 -04:00
|
|
|
|
2022-10-27 06:55:07 -04:00
|
|
|
examples/system/ota/native_ota_example:
|
|
|
|
disable:
|
2024-08-07 04:29:55 -04:00
|
|
|
- if: IDF_TARGET in ["esp32h2", "esp32c61"]
|
2022-10-27 06:55:07 -04:00
|
|
|
temporary: true
|
2024-08-07 04:29:55 -04:00
|
|
|
reason: target esp32h2, esp32c61 is not supported yet
|
2023-04-27 02:51:10 -04:00
|
|
|
disable_test:
|
2024-01-30 05:42:22 -05:00
|
|
|
- if: IDF_TARGET != "esp32"
|
|
|
|
reason: Only esp32 has ethernet runners
|
|
|
|
depends_components:
|
|
|
|
- app_update
|
|
|
|
- esp_https_ota
|
|
|
|
- esp_http_client
|
|
|
|
- esp_eth
|
|
|
|
- esp_driver_gpio
|
|
|
|
- bootloader_support
|
2024-05-07 05:22:08 -04:00
|
|
|
- protocol_examples_common
|
2022-10-27 06:55:07 -04:00
|
|
|
|
2022-07-12 22:34:02 -04:00
|
|
|
examples/system/ota/otatool:
|
|
|
|
disable:
|
2024-08-07 04:29:55 -04:00
|
|
|
- if: IDF_TARGET in ["esp32h2", "esp32c61"]
|
2022-07-12 22:34:02 -04:00
|
|
|
temporary: true
|
2024-08-07 04:29:55 -04:00
|
|
|
reason: target esp32h2, esp32c61 is not supported yet
|
|
|
|
disable_test:
|
|
|
|
- if: IDF_TARGET in ["esp32c5"]
|
|
|
|
reason: incomplete esptool support for esp32c5 # IDF-10915
|
|
|
|
|
2022-07-12 22:34:02 -04:00
|
|
|
|
|
|
|
examples/system/ota/pre_encrypted_ota:
|
2022-10-27 06:55:07 -04:00
|
|
|
disable:
|
2024-08-07 04:29:55 -04:00
|
|
|
- if: IDF_TARGET in ["esp32h2", "esp32c61"]
|
2022-10-27 06:55:07 -04:00
|
|
|
temporary: true
|
2024-08-07 04:29:55 -04:00
|
|
|
reason: target esp32h2, esp32c61 is not supported yet
|
2022-07-12 22:34:02 -04:00
|
|
|
disable_test:
|
2024-01-30 05:42:22 -05:00
|
|
|
- if: IDF_TARGET != "esp32"
|
2022-07-12 22:34:02 -04:00
|
|
|
temporary: true
|
2024-01-30 05:42:22 -05:00
|
|
|
reason: Only esp32 has ethernet runners
|
|
|
|
depends_components:
|
|
|
|
- app_update
|
|
|
|
- esp_https_ota
|
|
|
|
- esp_http_client
|
|
|
|
- esp_eth
|
|
|
|
- mbedtls
|
|
|
|
- bootloader_support
|
2024-05-07 05:22:08 -04:00
|
|
|
- protocol_examples_common
|
2022-07-12 22:34:02 -04:00
|
|
|
|
|
|
|
examples/system/ota/simple_ota_example:
|
2022-10-27 06:55:07 -04:00
|
|
|
disable:
|
2024-08-07 04:29:55 -04:00
|
|
|
- if: IDF_TARGET in ["esp32h2", "esp32c61"]
|
2022-10-27 06:55:07 -04:00
|
|
|
temporary: true
|
2024-08-07 04:29:55 -04:00
|
|
|
reason: target esp32h2, esp32c61 is not supported yet
|
2023-04-18 03:04:14 -04:00
|
|
|
- if: CONFIG_NAME == "spiram" and SOC_SPIRAM_SUPPORTED != 1
|
2022-07-12 22:34:02 -04:00
|
|
|
disable_test:
|
2024-01-30 05:42:22 -05:00
|
|
|
- if: IDF_TARGET not in ["esp32", "esp32c3", "esp32s3"]
|
2022-07-12 22:34:02 -04:00
|
|
|
temporary: true
|
|
|
|
reason: lack of runners
|
2024-01-02 08:03:29 -05:00
|
|
|
depends_components:
|
|
|
|
- app_update
|
|
|
|
- esp_https_ota
|
2024-01-30 05:42:22 -05:00
|
|
|
- esp_http_client
|
|
|
|
# different configs need different components
|
|
|
|
- esp_eth
|
|
|
|
- esp_wifi
|
|
|
|
- esp_phy
|
|
|
|
- mbedtls
|
2022-07-12 22:34:02 -04:00
|
|
|
|
|
|
|
examples/system/perfmon:
|
|
|
|
enable:
|
2023-10-18 04:23:19 -04:00
|
|
|
- if: IDF_TARGET in ["esp32", "esp32s2", "esp32s3"] and NIGHTLY_RUN == "1"
|
2023-10-18 02:39:33 -04:00
|
|
|
reason: xtensa only feature
|
2023-10-18 04:23:19 -04:00
|
|
|
- if: IDF_TARGET == "esp32"
|
|
|
|
reason: testing on a single target is sufficient
|
2023-10-18 02:39:33 -04:00
|
|
|
depends_components:
|
|
|
|
- perfmon
|
|
|
|
|
|
|
|
examples/system/pthread:
|
2023-11-27 08:03:30 -05:00
|
|
|
disable:
|
|
|
|
- if: IDF_TARGET != "esp32" and (NIGHTLY_RUN != "1" or IDF_TARGET == "linux")
|
2023-10-18 02:39:33 -04:00
|
|
|
reason: no target specific functionality, testing on a single target is sufficient
|
|
|
|
depends_components:
|
|
|
|
- pthread
|
2022-07-12 22:34:02 -04:00
|
|
|
|
2024-01-31 20:19:46 -05:00
|
|
|
examples/system/rt_mqueue:
|
|
|
|
disable_test:
|
|
|
|
- if: IDF_TARGET != "esp32" and (NIGHTLY_RUN != "1" or IDF_TARGET == "linux")
|
|
|
|
reason: no target specific functionality, testing on a single target is sufficient
|
|
|
|
depends_components:
|
|
|
|
- rt
|
|
|
|
|
2022-07-12 22:34:02 -04:00
|
|
|
examples/system/select:
|
2023-11-27 08:03:30 -05:00
|
|
|
disable:
|
|
|
|
- if: IDF_TARGET != "esp32c3" and (NIGHTLY_RUN != "1" or IDF_TARGET == "linux")
|
2023-10-18 02:39:33 -04:00
|
|
|
reason: no target specific functionality, testing on a single target is sufficient
|
|
|
|
depends_components:
|
|
|
|
- vfs
|
2022-07-12 22:34:02 -04:00
|
|
|
|
|
|
|
examples/system/sysview_tracing:
|
2023-01-10 00:59:46 -05:00
|
|
|
disable:
|
|
|
|
- if: SOC_GPTIMER_SUPPORTED != 1
|
2022-07-12 22:34:02 -04:00
|
|
|
disable_test:
|
2022-08-02 17:06:23 -04:00
|
|
|
- if: IDF_TARGET != "esp32"
|
2022-07-12 22:34:02 -04:00
|
|
|
temporary: true
|
|
|
|
reason: lack of runners
|
|
|
|
|
|
|
|
examples/system/sysview_tracing_heap_log:
|
2023-01-10 00:59:46 -05:00
|
|
|
disable:
|
|
|
|
- if: SOC_GPTIMER_SUPPORTED != 1
|
2022-07-12 22:34:02 -04:00
|
|
|
disable_test:
|
2022-08-02 17:06:23 -04:00
|
|
|
- if: IDF_TARGET != "esp32"
|
2022-07-12 22:34:02 -04:00
|
|
|
temporary: true
|
|
|
|
reason: lack of runners
|
|
|
|
|
|
|
|
examples/system/task_watchdog:
|
2023-11-27 08:03:30 -05:00
|
|
|
disable:
|
|
|
|
- if: IDF_TARGET != "esp32" and (NIGHTLY_RUN != "1" or IDF_TARGET == "linux")
|
2023-10-18 02:39:33 -04:00
|
|
|
reason: no target specific functionality, testing on a single target is sufficient
|
|
|
|
depends_components:
|
|
|
|
- esp_system
|
2022-07-12 22:34:02 -04:00
|
|
|
|
2024-07-05 02:08:15 -04:00
|
|
|
examples/system/ulp/lp_core/build_system:
|
|
|
|
enable:
|
|
|
|
- if: SOC_LP_CORE_SUPPORTED == 1
|
|
|
|
depends_components:
|
|
|
|
- ulp
|
|
|
|
|
2024-06-28 06:24:21 -04:00
|
|
|
examples/system/ulp/lp_core/debugging:
|
|
|
|
enable:
|
|
|
|
- if: SOC_LP_CORE_SUPPORTED == 1
|
|
|
|
depends_components:
|
|
|
|
- ulp
|
|
|
|
|
2023-04-28 01:16:53 -04:00
|
|
|
examples/system/ulp/lp_core/gpio:
|
2024-06-27 08:19:49 -04:00
|
|
|
disable:
|
|
|
|
- if: SOC_DEEP_SLEEP_SUPPORTED != 1
|
2023-04-28 01:16:53 -04:00
|
|
|
enable:
|
2024-06-14 05:39:57 -04:00
|
|
|
- if: (SOC_LP_CORE_SUPPORTED == 1) and (SOC_RTCIO_PIN_COUNT > 0)
|
2023-10-18 02:39:33 -04:00
|
|
|
depends_components:
|
|
|
|
- ulp
|
2023-04-28 01:16:53 -04:00
|
|
|
|
2024-04-23 00:27:06 -04:00
|
|
|
examples/system/ulp/lp_core/gpio_intr_pulse_counter:
|
2024-08-21 02:54:35 -04:00
|
|
|
disable:
|
|
|
|
- if: IDF_TARGET == "esp32c5" # TODO: IDF-10918
|
|
|
|
temporary: true
|
|
|
|
reason: unknown error
|
2024-04-23 00:27:06 -04:00
|
|
|
enable:
|
2024-06-24 23:57:07 -04:00
|
|
|
- if: (SOC_LP_CORE_SUPPORTED == 1) and (SOC_ULP_LP_UART_SUPPORTED == 1 and SOC_DEEP_SLEEP_SUPPORTED == 1)
|
2024-04-23 00:27:06 -04:00
|
|
|
depends_components:
|
|
|
|
- ulp
|
|
|
|
|
2024-04-19 02:03:29 -04:00
|
|
|
examples/system/ulp/lp_core/interrupt:
|
|
|
|
enable:
|
|
|
|
- if: SOC_LP_CORE_SUPPORTED == 1
|
|
|
|
depends_components:
|
|
|
|
- ulp
|
|
|
|
|
2023-04-28 01:16:53 -04:00
|
|
|
examples/system/ulp/lp_core/lp_i2c:
|
|
|
|
enable:
|
2024-07-10 23:28:40 -04:00
|
|
|
- if: SOC_LP_I2C_SUPPORTED == 1 and SOC_DEEP_SLEEP_SUPPORTED == 1
|
2023-11-02 04:34:40 -04:00
|
|
|
disable:
|
|
|
|
- if: IDF_TARGET == "esp32p4"
|
|
|
|
temporary: true
|
2024-03-15 11:41:42 -04:00
|
|
|
reason: target esp32p4 is not supported yet, TODO IDF-9407
|
2023-10-18 02:39:33 -04:00
|
|
|
depends_components:
|
|
|
|
- ulp
|
2023-04-28 01:16:53 -04:00
|
|
|
|
2023-05-22 08:48:15 -04:00
|
|
|
examples/system/ulp/lp_core/lp_uart/lp_uart_echo:
|
2023-09-26 05:42:03 -04:00
|
|
|
disable:
|
2024-06-24 23:57:07 -04:00
|
|
|
- if: (SOC_ULP_LP_UART_SUPPORTED != 1) or (SOC_DEEP_SLEEP_SUPPORTED != 1)
|
2023-10-18 02:39:33 -04:00
|
|
|
depends_components:
|
|
|
|
- ulp
|
2023-05-22 08:48:15 -04:00
|
|
|
|
2023-05-30 11:42:19 -04:00
|
|
|
examples/system/ulp/lp_core/lp_uart/lp_uart_print:
|
2023-09-26 05:42:03 -04:00
|
|
|
disable:
|
2024-06-24 23:57:07 -04:00
|
|
|
- if: (SOC_ULP_LP_UART_SUPPORTED != 1) or (SOC_DEEP_SLEEP_SUPPORTED != 1)
|
2023-10-18 02:39:33 -04:00
|
|
|
depends_components:
|
|
|
|
- ulp
|
2023-05-30 11:42:19 -04:00
|
|
|
|
2023-04-28 01:16:53 -04:00
|
|
|
examples/system/ulp/ulp_fsm/ulp:
|
2022-07-12 22:34:02 -04:00
|
|
|
disable:
|
2023-03-09 01:14:09 -05:00
|
|
|
- if: SOC_ULP_FSM_SUPPORTED != 1
|
2023-10-18 02:39:33 -04:00
|
|
|
depends_components:
|
|
|
|
- ulp
|
2022-07-12 22:34:02 -04:00
|
|
|
|
2023-04-28 01:16:53 -04:00
|
|
|
examples/system/ulp/ulp_fsm/ulp_adc:
|
2022-07-12 22:34:02 -04:00
|
|
|
enable:
|
2022-09-02 04:18:14 -04:00
|
|
|
- if: IDF_TARGET in ["esp32", "esp32s3"]
|
2022-07-12 22:34:02 -04:00
|
|
|
temporary: true
|
|
|
|
reason: the other targets are not tested yet
|
2023-10-18 02:39:33 -04:00
|
|
|
depends_components:
|
|
|
|
- ulp
|
2022-07-12 22:34:02 -04:00
|
|
|
|
2023-04-28 01:16:53 -04:00
|
|
|
examples/system/ulp/ulp_riscv/adc:
|
2022-07-12 22:34:02 -04:00
|
|
|
enable:
|
2023-04-28 01:16:53 -04:00
|
|
|
- if: SOC_RISCV_COPROC_SUPPORTED == 1
|
2023-10-18 02:39:33 -04:00
|
|
|
depends_components:
|
|
|
|
- ulp
|
2022-07-12 22:34:02 -04:00
|
|
|
|
2023-04-28 01:16:53 -04:00
|
|
|
examples/system/ulp/ulp_riscv/ds18b20_onewire:
|
2022-07-12 22:34:02 -04:00
|
|
|
enable:
|
|
|
|
- if: IDF_TARGET == "esp32s2"
|
|
|
|
temporary: true
|
|
|
|
reason: the other targets are not tested yet
|
2023-10-18 02:39:33 -04:00
|
|
|
depends_components:
|
|
|
|
- ulp
|
2022-07-12 22:34:02 -04:00
|
|
|
|
2023-04-28 01:16:53 -04:00
|
|
|
examples/system/ulp/ulp_riscv/gpio:
|
2022-07-12 22:34:02 -04:00
|
|
|
enable:
|
2023-04-28 01:16:53 -04:00
|
|
|
- if: SOC_RISCV_COPROC_SUPPORTED == 1
|
2023-10-18 02:39:33 -04:00
|
|
|
depends_components:
|
|
|
|
- ulp
|
2022-07-12 22:34:02 -04:00
|
|
|
|
2023-04-28 01:16:53 -04:00
|
|
|
examples/system/ulp/ulp_riscv/gpio_interrupt:
|
2022-07-12 22:34:02 -04:00
|
|
|
enable:
|
2023-04-28 01:16:53 -04:00
|
|
|
- if: SOC_RISCV_COPROC_SUPPORTED == 1
|
2023-10-18 02:39:33 -04:00
|
|
|
depends_components:
|
|
|
|
- ulp
|
2022-07-25 02:04:08 -04:00
|
|
|
|
2023-04-28 01:16:53 -04:00
|
|
|
examples/system/ulp/ulp_riscv/i2c:
|
2022-08-09 09:46:14 -04:00
|
|
|
enable:
|
|
|
|
- if: SOC_RISCV_COPROC_SUPPORTED == 1
|
2023-10-18 02:39:33 -04:00
|
|
|
depends_components:
|
|
|
|
- ulp
|
2022-08-09 09:46:14 -04:00
|
|
|
|
2023-12-14 10:15:06 -05:00
|
|
|
examples/system/ulp/ulp_riscv/interrupts:
|
|
|
|
enable:
|
|
|
|
- if: SOC_RISCV_COPROC_SUPPORTED == 1
|
|
|
|
depends_components:
|
|
|
|
- ulp
|
|
|
|
|
2023-05-19 09:34:44 -04:00
|
|
|
examples/system/ulp/ulp_riscv/touch:
|
|
|
|
enable:
|
|
|
|
- if: SOC_RISCV_COPROC_SUPPORTED == 1
|
2023-10-18 02:39:33 -04:00
|
|
|
depends_components:
|
|
|
|
- ulp
|
2023-05-19 09:34:44 -04:00
|
|
|
|
2023-04-28 01:16:53 -04:00
|
|
|
examples/system/ulp/ulp_riscv/uart_print:
|
2022-07-25 02:04:08 -04:00
|
|
|
enable:
|
|
|
|
- if: SOC_RISCV_COPROC_SUPPORTED == 1
|
2023-10-18 02:39:33 -04:00
|
|
|
depends_components:
|
|
|
|
- ulp
|
|
|
|
|
|
|
|
examples/system/unit_test/:
|
2023-11-27 08:03:30 -05:00
|
|
|
disable:
|
|
|
|
- if: IDF_TARGET != "esp32" and (NIGHTLY_RUN != "1" or IDF_TARGET == "linux")
|
2023-10-18 02:39:33 -04:00
|
|
|
reason: no target specific functionality, testing on a single target is sufficient
|
|
|
|
depends_components:
|
|
|
|
- unity
|
2022-10-27 06:55:07 -04:00
|
|
|
|
2022-09-19 00:25:30 -04:00
|
|
|
examples/system/xip_from_psram:
|
|
|
|
enable:
|
2024-06-27 01:55:03 -04:00
|
|
|
- if: SOC_SPIRAM_SUPPORTED == 1 and SOC_SPIRAM_XIP_SUPPORTED == 1
|
2022-09-19 00:25:30 -04:00
|
|
|
reason: this feature is supported on chips that have PSRAM
|
|
|
|
disable:
|
|
|
|
- if: IDF_TARGET == "esp32"
|
|
|
|
reason: target esp32 doesn't support this feature.
|