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:
|
|
|
|
- if: IDF_TARGET == "esp32c6" or IDF_TARGET == "esp32h2"
|
2022-07-12 22:34:02 -04:00
|
|
|
temporary: true
|
2023-02-06 10:04:11 -05:00
|
|
|
reason: target esp32c6, esp32h2 is not supported yet
|
2022-07-12 22:34:02 -04:00
|
|
|
|
|
|
|
examples/system/console/advanced:
|
|
|
|
disable:
|
2023-01-10 00:59:46 -05:00
|
|
|
- if: IDF_TARGET in ["esp32c2", "esp32c6", "esp32h2"]
|
2022-07-12 22:34:02 -04:00
|
|
|
temporary: true
|
2022-10-27 06:55:07 -04:00
|
|
|
reason: target(s) not supported yet
|
2022-07-12 22:34:02 -04:00
|
|
|
disable_test:
|
|
|
|
- if: IDF_TARGET in ["esp32s2", "esp32s3"]
|
|
|
|
temporary: true
|
|
|
|
reason: lack of runners
|
|
|
|
|
|
|
|
examples/system/console/advanced_usb_cdc:
|
|
|
|
enable:
|
|
|
|
- if: IDF_TARGET == "esp32s2"
|
|
|
|
temporary: true
|
|
|
|
reason: the other targets are not tested yet
|
|
|
|
|
|
|
|
examples/system/console/basic:
|
|
|
|
disable:
|
2023-01-10 00:59:46 -05:00
|
|
|
- if: IDF_TARGET in ["esp32c2", "esp32c6", "esp32h2"]
|
2022-07-12 22:34:02 -04:00
|
|
|
temporary: true
|
2022-10-27 06:55:07 -04:00
|
|
|
reason: target(s) not supported yet
|
2022-07-12 22:34:02 -04:00
|
|
|
disable_test:
|
|
|
|
- if: IDF_TARGET in ["esp32s2", "esp32s3"]
|
|
|
|
temporary: true
|
|
|
|
reason: lack of runners
|
|
|
|
|
2022-10-11 22:03:47 -04:00
|
|
|
examples/system/deep_sleep_wake_stub:
|
|
|
|
disable:
|
2023-08-01 06:04:05 -04:00
|
|
|
- if: IDF_TARGET in ["esp32c2"]
|
2022-10-11 22:03:47 -04:00
|
|
|
temporary: true
|
|
|
|
reason: target(s) is not supported yet
|
|
|
|
|
2022-07-12 22:34:02 -04:00
|
|
|
examples/system/esp_timer:
|
2022-10-27 06:55:07 -04:00
|
|
|
disable:
|
2023-01-10 00:59:46 -05:00
|
|
|
- if: IDF_TARGET == "esp32c6" or IDF_TARGET == "esp32h2"
|
2022-10-27 06:55:07 -04:00
|
|
|
temporary: true
|
|
|
|
reason: target esp32c6 is not supported yet
|
2022-07-12 22:34:02 -04:00
|
|
|
|
2023-01-10 00:59:46 -05:00
|
|
|
examples/system/eventfd:
|
|
|
|
disable:
|
|
|
|
- if: SOC_GPTIMER_SUPPORTED != 1
|
|
|
|
|
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
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
examples/system/gdbstub:
|
|
|
|
disable:
|
2023-01-10 00:59:46 -05:00
|
|
|
- if: IDF_TARGET == "esp32c2" or IDF_TARGET == "esp32h2"
|
2022-07-12 22:34:02 -04:00
|
|
|
temporary: true
|
2023-01-10 00:59:46 -05:00
|
|
|
reason: target esp32c2, esp32h2 is not supported yet
|
2022-07-12 22:34:02 -04:00
|
|
|
|
|
|
|
examples/system/heap_task_tracking:
|
|
|
|
disable:
|
2023-01-10 00:59:46 -05:00
|
|
|
- if: IDF_TARGET == "esp32c2" or IDF_TARGET == "esp32h2"
|
2022-07-12 22:34:02 -04:00
|
|
|
temporary: true
|
2023-01-10 00:59:46 -05:00
|
|
|
reason: target esp32c2, esp32h2 is not supported yet
|
2022-07-12 22:34:02 -04:00
|
|
|
|
|
|
|
examples/system/himem:
|
|
|
|
enable:
|
|
|
|
- if: IDF_TARGET == "esp32"
|
|
|
|
temporary: true
|
|
|
|
reason: the other targets are not tested yet
|
|
|
|
|
|
|
|
examples/system/ipc/ipc_isr:
|
|
|
|
enable:
|
|
|
|
- if: IDF_TARGET == "esp32" or IDF_TARGET == "esp32s3"
|
|
|
|
temporary: true
|
|
|
|
reason: the other targets are not tested yet
|
|
|
|
|
2023-03-20 11:08:38 -04:00
|
|
|
examples/system/lp_core/lp_i2c:
|
|
|
|
enable:
|
|
|
|
- if: SOC_LP_I2C_SUPPORTED == 1
|
|
|
|
|
2022-07-12 22:34:02 -04:00
|
|
|
examples/system/ota/advanced_https_ota:
|
2022-10-27 06:55:07 -04:00
|
|
|
disable:
|
2023-04-27 02:51:10 -04:00
|
|
|
- if: IDF_TARGET == "esp32h2"
|
2022-10-27 06:55:07 -04:00
|
|
|
temporary: true
|
2023-04-27 02:51:10 -04:00
|
|
|
reason: target esp32h2 is not supported yet
|
2022-07-12 22:34:02 -04:00
|
|
|
disable_test:
|
2023-04-27 02:51:10 -04:00
|
|
|
- if: IDF_TARGET == "esp32c2" or IDF_TARGET == "esp32c6"
|
2022-07-12 22:34:02 -04:00
|
|
|
temporary: true
|
|
|
|
reason: lack of runners
|
|
|
|
|
2022-10-27 06:55:07 -04:00
|
|
|
examples/system/ota/native_ota_example:
|
|
|
|
disable:
|
2023-04-27 02:51:10 -04:00
|
|
|
- if: IDF_TARGET == "esp32h2"
|
2022-10-27 06:55:07 -04:00
|
|
|
temporary: true
|
2023-04-27 02:51:10 -04:00
|
|
|
reason: target esp32h2 is not supported yet
|
|
|
|
disable_test:
|
|
|
|
- if: IDF_TARGET == "esp32c6"
|
|
|
|
temporary: true
|
|
|
|
reason: lack of runners
|
2022-10-27 06:55:07 -04:00
|
|
|
|
2022-07-12 22:34:02 -04:00
|
|
|
examples/system/ota/otatool:
|
|
|
|
disable:
|
2023-01-10 00:59:46 -05:00
|
|
|
- if: IDF_TARGET == "esp32c2" or IDF_TARGET == "esp32h2"
|
2022-07-12 22:34:02 -04:00
|
|
|
temporary: true
|
2023-01-10 00:59:46 -05:00
|
|
|
reason: target esp32c2, esp32h2 is not supported yet
|
2022-07-12 22:34:02 -04:00
|
|
|
|
|
|
|
examples/system/ota/pre_encrypted_ota:
|
2022-10-27 06:55:07 -04:00
|
|
|
disable:
|
2023-04-27 02:51:10 -04:00
|
|
|
- if: IDF_TARGET == "esp32h2"
|
2022-10-27 06:55:07 -04:00
|
|
|
temporary: true
|
2023-04-27 02:51:10 -04:00
|
|
|
reason: target esp32h2 is not supported yet
|
2022-07-12 22:34:02 -04:00
|
|
|
disable_test:
|
2023-04-27 02:51:10 -04:00
|
|
|
- if: IDF_TARGET == "esp32c2" or IDF_TARGET == "esp32c6"
|
2022-07-12 22:34:02 -04:00
|
|
|
temporary: true
|
|
|
|
reason: lack of runners
|
|
|
|
|
|
|
|
examples/system/ota/simple_ota_example:
|
2022-10-27 06:55:07 -04:00
|
|
|
disable:
|
2023-04-27 02:51:10 -04:00
|
|
|
- if: IDF_TARGET == "esp32h2"
|
2022-10-27 06:55:07 -04:00
|
|
|
temporary: true
|
2023-04-27 02:51:10 -04:00
|
|
|
reason: target esp32h2 is not supported yet
|
2022-07-12 22:34:02 -04:00
|
|
|
disable_test:
|
2023-04-27 02:51:10 -04:00
|
|
|
- if: IDF_TARGET == "esp32c2" or IDF_TARGET == "esp32c6"
|
2022-07-12 22:34:02 -04:00
|
|
|
temporary: true
|
|
|
|
reason: lack of runners
|
|
|
|
|
|
|
|
examples/system/perfmon:
|
|
|
|
enable:
|
|
|
|
- if: IDF_TARGET in ["esp32", "esp32s2", "esp32s3"]
|
|
|
|
temporary: true
|
|
|
|
reason: the other targets are not tested yet
|
|
|
|
|
|
|
|
examples/system/select:
|
|
|
|
disable:
|
|
|
|
- if: IDF_TARGET == "esp32c2"
|
|
|
|
temporary: true
|
|
|
|
reason: target esp32c2 is not supported yet
|
|
|
|
disable_test:
|
|
|
|
- if: IDF_TARGET in ["esp32s2", "esp32s3"]
|
|
|
|
temporary: true
|
|
|
|
reason: lack of runners
|
2023-01-10 00:59:46 -05:00
|
|
|
- if: IDF_TARGET == "esp32c6" or IDF_TARGET == "esp32h2"
|
2022-11-24 06:42:59 -05:00
|
|
|
temporary: true
|
|
|
|
reason: target esp32c6 is not supported yet
|
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:
|
|
|
|
disable_test:
|
|
|
|
- if: IDF_TARGET == "esp32c2"
|
|
|
|
temporary: true
|
2022-11-22 04:01:25 -05:00
|
|
|
reason: target esp32c2 is not supported yet
|
2022-07-12 22:34:02 -04:00
|
|
|
|
|
|
|
examples/system/ulp_fsm/ulp:
|
|
|
|
disable:
|
2023-03-09 01:14:09 -05:00
|
|
|
- if: SOC_ULP_FSM_SUPPORTED != 1
|
2022-07-12 22:34:02 -04:00
|
|
|
|
|
|
|
examples/system/ulp_fsm/ulp_adc:
|
|
|
|
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
|
|
|
|
|
|
|
|
examples/system/ulp_riscv/adc:
|
|
|
|
enable:
|
2023-04-11 00:59:20 -04:00
|
|
|
- if: IDF_TARGET in ["esp32s2", "esp32s3"]
|
2022-07-12 22:34:02 -04:00
|
|
|
temporary: true
|
|
|
|
reason: the other targets are not tested yet
|
|
|
|
|
|
|
|
examples/system/ulp_riscv/ds18b20_onewire:
|
|
|
|
enable:
|
|
|
|
- if: IDF_TARGET == "esp32s2"
|
|
|
|
temporary: true
|
|
|
|
reason: the other targets are not tested yet
|
|
|
|
|
|
|
|
examples/system/ulp_riscv/gpio:
|
|
|
|
enable:
|
|
|
|
- if: IDF_TARGET in ["esp32s2", "esp32s3"]
|
|
|
|
temporary: true
|
|
|
|
reason: the other targets are not tested yet
|
|
|
|
|
|
|
|
examples/system/ulp_riscv/gpio_interrupt:
|
|
|
|
enable:
|
|
|
|
- if: IDF_TARGET in ["esp32s2", "esp32s3"]
|
|
|
|
temporary: true
|
|
|
|
reason: the other targets are not tested yet
|
2022-07-25 02:04:08 -04:00
|
|
|
|
2022-08-09 09:46:14 -04:00
|
|
|
examples/system/ulp_riscv/i2c:
|
|
|
|
enable:
|
|
|
|
- if: SOC_RISCV_COPROC_SUPPORTED == 1
|
|
|
|
|
2022-07-25 02:04:08 -04:00
|
|
|
examples/system/ulp_riscv/uart_print:
|
|
|
|
enable:
|
|
|
|
- if: SOC_RISCV_COPROC_SUPPORTED == 1
|
2022-10-27 06:55:07 -04:00
|
|
|
|
2022-09-19 00:25:30 -04:00
|
|
|
examples/system/xip_from_psram:
|
|
|
|
enable:
|
|
|
|
- if: SOC_SPIRAM_SUPPORTED == 1
|
|
|
|
reason: this feature is supported on chips that have PSRAM
|
|
|
|
disable:
|
|
|
|
- if: IDF_TARGET == "esp32"
|
|
|
|
reason: target esp32 doesn't support this feature.
|