2022-07-13 02:34:02 +00:00
|
|
|
# Documentation: .gitlab/ci/README.md#manifest-file-to-control-the-buildtest-apps
|
|
|
|
|
2023-06-07 02:36:29 +00:00
|
|
|
# TODO: Modify the configuration after the files matching rules are changed
|
|
|
|
# Or delete TODO without modifying the configuration if it is sure that current rules are correct.
|
|
|
|
.openthread_dependencies: &openthread_dependencies
|
2023-07-11 13:25:47 +00:00
|
|
|
depends_components:
|
|
|
|
- esp_coex
|
|
|
|
- esp_netif
|
|
|
|
- esp_phy
|
|
|
|
- ieee802154
|
|
|
|
- lwip
|
|
|
|
- openthread
|
2023-06-07 02:36:29 +00:00
|
|
|
depends_filepatterns:
|
|
|
|
- examples/common_components/iperf/*
|
|
|
|
- examples/common_components/iperf/**/*
|
|
|
|
- examples/openthread/*
|
|
|
|
- examples/openthread/**/*
|
|
|
|
|
2023-07-11 13:25:47 +00:00
|
|
|
.openthread_sleep_dependencies: &openthread_sleep_dependencies
|
|
|
|
depends_components:
|
|
|
|
- esp_hw_support
|
|
|
|
|
2022-07-13 02:34:02 +00:00
|
|
|
examples/openthread/ot_br:
|
2023-11-27 08:03:02 +00:00
|
|
|
enable:
|
|
|
|
- if: SOC_WIFI_SUPPORTED == 1
|
2022-08-17 02:57:39 +00:00
|
|
|
disable_test:
|
2023-01-04 09:29:06 +00:00
|
|
|
- if: IDF_TARGET in ["esp32", "esp32c3", "esp32c2", "esp32c6", "esp32s2"]
|
2022-08-17 02:57:39 +00:00
|
|
|
temporary: true
|
|
|
|
reason: only test on esp32s3
|
2023-06-07 02:36:29 +00:00
|
|
|
<<: *openthread_dependencies
|
2022-07-13 02:34:02 +00:00
|
|
|
|
|
|
|
examples/openthread/ot_cli:
|
|
|
|
enable:
|
2023-11-06 13:04:59 +00:00
|
|
|
- if: SOC_IEEE802154_SUPPORTED == 1
|
2023-06-07 02:36:29 +00:00
|
|
|
<<: *openthread_dependencies
|
2022-07-13 02:34:02 +00:00
|
|
|
|
|
|
|
examples/openthread/ot_rcp:
|
|
|
|
enable:
|
2023-11-06 13:04:59 +00:00
|
|
|
- if: SOC_IEEE802154_SUPPORTED == 1
|
2023-03-22 08:26:29 +00:00
|
|
|
disable_test:
|
|
|
|
- if: IDF_TARGET == "esp32h2"
|
2022-12-19 02:50:08 +00:00
|
|
|
temporary: true
|
2023-03-22 08:26:29 +00:00
|
|
|
reason: only test on esp32c6
|
2023-06-07 02:36:29 +00:00
|
|
|
<<: *openthread_dependencies
|
2023-06-01 06:31:03 +00:00
|
|
|
|
2023-11-01 04:01:01 +00:00
|
|
|
examples/openthread/ot_sleepy_device/deep_sleep:
|
2023-06-01 06:31:03 +00:00
|
|
|
enable:
|
2023-11-27 08:03:02 +00:00
|
|
|
- if: SOC_IEEE802154_SUPPORTED == 1
|
|
|
|
<<: [*openthread_dependencies, *openthread_sleep_dependencies]
|
2023-11-01 04:01:01 +00:00
|
|
|
|
|
|
|
examples/openthread/ot_sleepy_device/light_sleep:
|
|
|
|
enable:
|
2023-11-06 13:04:59 +00:00
|
|
|
- if: SOC_IEEE802154_SUPPORTED == 1
|
2023-07-11 13:25:47 +00:00
|
|
|
<<: [*openthread_dependencies, *openthread_sleep_dependencies]
|