2022-07-13 10:34:02 +08:00
|
|
|
# Documentation: .gitlab/ci/README.md#manifest-file-to-control-the-buildtest-apps
|
|
|
|
|
2023-12-27 22:31:37 +08:00
|
|
|
.default_dependencies: &default_dependencies
|
2023-11-30 17:01:23 +01:00
|
|
|
depends_components:
|
2023-12-27 22:31:37 +08:00
|
|
|
- lwip
|
|
|
|
- esp_netif
|
|
|
|
- esp_wifi
|
|
|
|
- esp_phy
|
|
|
|
- esp_eth
|
|
|
|
- mbedtls
|
2024-05-07 11:22:08 +02:00
|
|
|
- protocol_examples_common
|
2023-11-30 17:01:23 +01:00
|
|
|
|
2022-10-27 18:55:07 +08:00
|
|
|
examples/protocols/esp_http_client:
|
2023-12-27 22:31:37 +08:00
|
|
|
<<: *default_dependencies
|
2023-02-17 11:39:54 +05:30
|
|
|
enable:
|
|
|
|
- if: INCLUDE_DEFAULT == 1 or IDF_TARGET == "linux"
|
2024-04-01 12:25:38 +08:00
|
|
|
disable:
|
|
|
|
- if: IDF_TARGET == "esp32c5"
|
|
|
|
temporary: true
|
|
|
|
reason: not supported yet # TODO: [ESP32C5] IDF-8697
|
2023-01-09 20:58:27 +08:00
|
|
|
disable_test:
|
2023-02-17 11:39:54 +05:30
|
|
|
- if: IDF_TARGET not in ["esp32", "linux"]
|
2023-12-27 22:31:37 +08:00
|
|
|
depends_filepatterns:
|
|
|
|
- components/esp_http_client/**/*
|
2022-10-27 18:55:07 +08:00
|
|
|
|
|
|
|
examples/protocols/esp_local_ctrl:
|
2023-12-27 22:31:37 +08:00
|
|
|
<<: *default_dependencies
|
2023-01-10 13:59:46 +08:00
|
|
|
disable:
|
2024-04-01 12:25:38 +08:00
|
|
|
- if: IDF_TARGET in ["esp32h2", "esp32c5"]
|
|
|
|
temporary: true
|
|
|
|
reason: not supported yet # TODO: [ESP32C5] IDF-8697
|
2022-12-07 18:07:07 +08:00
|
|
|
disable_test:
|
|
|
|
- if: IDF_TARGET not in ["esp32", "esp32c3", "esp32s3"]
|
2023-12-27 22:31:37 +08:00
|
|
|
reason: only test on these targets
|
|
|
|
depends_filepatterns:
|
|
|
|
- components/protocomm/**/*
|
|
|
|
- tools/esp_prov/**/*
|
2022-07-13 10:34:02 +08:00
|
|
|
|
|
|
|
examples/protocols/http_request:
|
2023-12-27 22:31:37 +08:00
|
|
|
<<: *default_dependencies
|
2024-04-01 12:25:38 +08:00
|
|
|
disable:
|
|
|
|
- if: IDF_TARGET == "esp32c5"
|
|
|
|
temporary: true
|
|
|
|
reason: not supported yet # TODO: [ESP32C5] IDF-8697
|
2023-01-09 20:58:27 +08:00
|
|
|
disable_test:
|
|
|
|
- if: IDF_TARGET != "esp32"
|
|
|
|
reason: only test on esp32
|
2022-07-13 10:34:02 +08:00
|
|
|
|
|
|
|
examples/protocols/http_server:
|
2023-12-27 22:31:37 +08:00
|
|
|
<<: *default_dependencies
|
2024-04-01 12:25:38 +08:00
|
|
|
disable:
|
|
|
|
- if: IDF_TARGET == "esp32c5"
|
|
|
|
temporary: true
|
|
|
|
reason: not supported yet # TODO: [ESP32C5] IDF-8697
|
2022-12-07 18:07:07 +08:00
|
|
|
disable_test:
|
|
|
|
- if: IDF_TARGET not in ["esp32", "esp32c3", "esp32s3"]
|
2023-12-27 22:31:37 +08:00
|
|
|
reason: only test on these targets
|
|
|
|
depends_filepatterns:
|
|
|
|
- components/esp_http_server/**/*
|
2022-12-07 18:07:07 +08:00
|
|
|
|
|
|
|
examples/protocols/http_server/captive_portal:
|
2023-12-27 22:31:37 +08:00
|
|
|
<<: *default_dependencies
|
2023-01-10 13:59:46 +08:00
|
|
|
disable:
|
2024-04-01 12:25:38 +08:00
|
|
|
- if: IDF_TARGET in ["esp32h2", "esp32p4", "esp32c5"]
|
2023-08-17 10:45:23 +08:00
|
|
|
temporary: true
|
2024-04-01 12:25:38 +08:00
|
|
|
reason: not supported on p4 # TODO: IDF-8076 [ESP32C5] IDF-8697
|
2022-12-07 18:07:07 +08:00
|
|
|
disable_test:
|
|
|
|
- if: IDF_TARGET != "esp32"
|
|
|
|
reason: only test on esp32
|
2023-12-27 22:31:37 +08:00
|
|
|
depends_filepatterns:
|
|
|
|
- components/esp_http_server/**/*
|
2022-12-07 18:07:07 +08:00
|
|
|
|
2023-05-29 14:47:43 +02:00
|
|
|
examples/protocols/http_server/restful_server:
|
2023-12-27 22:31:37 +08:00
|
|
|
<<: *default_dependencies
|
2023-01-10 13:59:46 +08:00
|
|
|
disable:
|
2024-04-01 12:25:38 +08:00
|
|
|
- if: IDF_TARGET in ["esp32h2", "esp32c5"]
|
|
|
|
temporary: true
|
|
|
|
reason: not supported yet # TODO: [ESP32C5] IDF-8697
|
2023-12-27 22:31:37 +08:00
|
|
|
depends_filepatterns:
|
|
|
|
- components/esp_http_server/**/*
|
2023-05-29 14:47:43 +02:00
|
|
|
|
|
|
|
examples/protocols/http_server/ws_echo_server:
|
2023-12-27 22:31:37 +08:00
|
|
|
<<: *default_dependencies
|
2024-04-01 12:25:38 +08:00
|
|
|
disable:
|
|
|
|
- if: IDF_TARGET == "esp32c5"
|
|
|
|
temporary: true
|
|
|
|
reason: not supported yet # TODO: [ESP32C5] IDF-8697
|
2022-12-07 18:07:07 +08:00
|
|
|
disable_test:
|
|
|
|
- if: IDF_TARGET != "esp32"
|
|
|
|
reason: only test on esp32
|
2023-12-27 22:31:37 +08:00
|
|
|
depends_filepatterns:
|
|
|
|
- components/esp_http_server/**/*
|
2022-07-13 10:34:02 +08:00
|
|
|
|
|
|
|
examples/protocols/https_mbedtls:
|
2023-12-27 22:31:37 +08:00
|
|
|
<<: *default_dependencies
|
2024-01-26 14:04:11 +08:00
|
|
|
enable:
|
|
|
|
- if: INCLUDE_DEFAULT == 1 or IDF_TARGET == "linux"
|
2024-04-01 12:25:38 +08:00
|
|
|
disable:
|
|
|
|
- if: IDF_TARGET == "esp32c5"
|
|
|
|
temporary: true
|
|
|
|
reason: not supported yet # TODO: [ESP32C5] IDF-8697
|
2022-07-13 10:34:02 +08:00
|
|
|
disable_test:
|
2023-01-09 20:58:27 +08:00
|
|
|
- if: IDF_TARGET != "esp32"
|
2023-12-27 22:31:37 +08:00
|
|
|
reason: only test on esp32
|
2022-07-13 10:34:02 +08:00
|
|
|
|
2022-10-27 18:55:07 +08:00
|
|
|
examples/protocols/https_request:
|
2023-12-27 22:31:37 +08:00
|
|
|
<<: *default_dependencies
|
2023-08-17 10:45:23 +08:00
|
|
|
disable:
|
2024-04-01 12:25:38 +08:00
|
|
|
- if: IDF_TARGET in ["esp32h2", "esp32p4", "esp32c5"]
|
2023-08-17 10:45:23 +08:00
|
|
|
temporary: true
|
2024-04-01 12:25:38 +08:00
|
|
|
reason: not supported on h2, p4 and c5 # TODO: IDF-9076 (H2) [ESP32C5] IDF-8697
|
2023-01-09 20:58:27 +08:00
|
|
|
disable_test:
|
|
|
|
- if: IDF_TARGET != "esp32"
|
2023-12-27 22:31:37 +08:00
|
|
|
reason: only test on esp32
|
2022-10-27 18:55:07 +08:00
|
|
|
|
2022-07-13 10:34:02 +08:00
|
|
|
examples/protocols/https_server/simple:
|
2023-12-27 22:31:37 +08:00
|
|
|
<<: *default_dependencies
|
2024-04-01 12:25:38 +08:00
|
|
|
disable:
|
|
|
|
- if: IDF_TARGET == "esp32c5"
|
|
|
|
temporary: true
|
|
|
|
reason: not supported yet # TODO: [ESP32C5] IDF-8697
|
2022-07-13 10:34:02 +08:00
|
|
|
disable_test:
|
2022-12-07 18:07:07 +08:00
|
|
|
- if: IDF_TARGET not in ["esp32", "esp32c3", "esp32s3"]
|
2023-12-27 22:31:37 +08:00
|
|
|
reason: only test on these targets
|
|
|
|
depends_filepatterns:
|
|
|
|
- components/esp_https_server/**/*
|
|
|
|
- components/esp_tls/**/*
|
2022-07-13 10:34:02 +08:00
|
|
|
|
|
|
|
examples/protocols/https_server/wss_server:
|
2023-12-27 22:31:37 +08:00
|
|
|
<<: *default_dependencies
|
2024-04-01 12:25:38 +08:00
|
|
|
disable:
|
|
|
|
- if: IDF_TARGET == "esp32c5"
|
|
|
|
temporary: true
|
|
|
|
reason: not supported yet # TODO: [ESP32C5] IDF-8697
|
2022-07-13 10:34:02 +08:00
|
|
|
disable_test:
|
2022-12-07 18:07:07 +08:00
|
|
|
- if: IDF_TARGET != "esp32"
|
|
|
|
reason: only test on esp32
|
2023-12-27 22:31:37 +08:00
|
|
|
depends_filepatterns:
|
|
|
|
- components/esp_https_server/**/*
|
2022-07-13 10:34:02 +08:00
|
|
|
|
|
|
|
examples/protocols/https_x509_bundle:
|
2023-12-27 22:31:37 +08:00
|
|
|
<<: *default_dependencies
|
2024-04-01 12:25:38 +08:00
|
|
|
disable:
|
|
|
|
- if: IDF_TARGET == "esp32c5"
|
|
|
|
temporary: true
|
|
|
|
reason: not supported yet # TODO: [ESP32C5] IDF-8697
|
2022-07-13 10:34:02 +08:00
|
|
|
disable_test:
|
2022-12-07 18:07:07 +08:00
|
|
|
- if: IDF_TARGET != "esp32"
|
2023-12-27 22:31:37 +08:00
|
|
|
reason: only test on esp32
|
|
|
|
depends_filepatterns:
|
|
|
|
- components/esp_tls/**/*
|
2022-07-13 10:34:02 +08:00
|
|
|
|
|
|
|
examples/protocols/icmp_echo:
|
2023-12-27 22:31:37 +08:00
|
|
|
<<: *default_dependencies
|
2023-08-17 10:45:23 +08:00
|
|
|
disable:
|
2024-04-01 12:25:38 +08:00
|
|
|
- if: IDF_TARGET in ["esp32p4", "esp32c5"]
|
2023-08-17 10:45:23 +08:00
|
|
|
temporary: true
|
2024-04-01 12:25:38 +08:00
|
|
|
reason: not supported on p4 and c5 # TODO: [ESP32-C5] IDF-8697
|
2022-07-13 10:34:02 +08:00
|
|
|
disable_test:
|
2023-07-20 22:06:03 +08:00
|
|
|
- if: SOC_WIFI_SUPPORTED != 1
|
2022-07-13 10:34:02 +08:00
|
|
|
|
|
|
|
examples/protocols/l2tap:
|
2023-12-27 22:31:37 +08:00
|
|
|
<<: *default_dependencies
|
2023-08-17 10:45:23 +08:00
|
|
|
disable:
|
2024-04-01 12:25:38 +08:00
|
|
|
- if: IDF_TARGET in ["esp32p4", "esp32c5"]
|
2023-08-17 10:45:23 +08:00
|
|
|
temporary: true
|
2024-04-01 12:25:38 +08:00
|
|
|
reason: not supported on p4 and c5 # TODO: [ESP32C5] IDF-8697
|
2022-07-13 10:34:02 +08:00
|
|
|
disable_test:
|
2023-01-09 20:58:27 +08:00
|
|
|
- if: IDF_TARGET != "esp32"
|
2023-12-27 22:31:37 +08:00
|
|
|
reason: only test on esp32
|
2022-07-13 10:34:02 +08:00
|
|
|
|
2023-08-17 10:45:23 +08:00
|
|
|
examples/protocols/modbus:
|
2023-12-27 22:31:37 +08:00
|
|
|
<<: *default_dependencies
|
2024-04-01 12:25:38 +08:00
|
|
|
disable:
|
|
|
|
- if: IDF_TARGET == "esp32c5"
|
|
|
|
temporary: true
|
|
|
|
reason: not supported yet # TODO: [ESP32C5] IDF-8722, IDF-8697
|
2023-12-27 22:31:37 +08:00
|
|
|
depends_filepatterns:
|
|
|
|
- examples/protocols/modbus/mb_example_common/**/*
|
|
|
|
|
|
|
|
examples/protocols/mqtt:
|
|
|
|
<<: *default_dependencies
|
|
|
|
disable:
|
2024-03-21 11:33:57 +01:00
|
|
|
- if: IDF_TARGET == "esp32c5"
|
2023-12-27 22:31:37 +08:00
|
|
|
temporary: true
|
2024-03-21 11:33:57 +01:00
|
|
|
reason: not supported on c5 # TODO: [ESP32C5] IDF-8697
|
2023-12-27 22:31:37 +08:00
|
|
|
depends_filepatterns:
|
|
|
|
- components/mqtt/**/*
|
2023-08-17 10:45:23 +08:00
|
|
|
|
2023-05-04 14:22:17 +02:00
|
|
|
examples/protocols/mqtt/custom_outbox:
|
2023-12-27 22:31:37 +08:00
|
|
|
<<: *default_dependencies
|
2023-05-04 14:22:17 +02:00
|
|
|
disable:
|
2024-03-21 11:33:57 +01:00
|
|
|
- if: IDF_TARGET == "esp32c5"
|
2023-05-04 14:22:17 +02:00
|
|
|
temporary: true
|
2024-03-21 11:33:57 +01:00
|
|
|
reason: not supported on c5 # TODO: [ESP32C5] IDF-8697
|
2023-05-04 14:22:17 +02:00
|
|
|
|
2022-07-13 10:34:02 +08:00
|
|
|
examples/protocols/mqtt/ssl:
|
2023-12-27 22:31:37 +08:00
|
|
|
<<: *default_dependencies
|
2023-08-17 10:45:23 +08:00
|
|
|
disable:
|
2024-03-21 11:33:57 +01:00
|
|
|
- if: IDF_TARGET == "esp32c5"
|
2023-08-17 10:45:23 +08:00
|
|
|
temporary: true
|
2024-03-21 11:33:57 +01:00
|
|
|
reason: not supported on c5 # TODO: [ESP32C5] IDF-8697
|
2022-07-13 10:34:02 +08:00
|
|
|
disable_test:
|
2023-01-09 20:58:27 +08:00
|
|
|
- if: IDF_TARGET != "esp32"
|
2023-12-27 22:31:37 +08:00
|
|
|
reason: only test on esp32
|
2022-07-13 10:34:02 +08:00
|
|
|
|
|
|
|
examples/protocols/mqtt/ssl_ds:
|
2023-12-27 22:31:37 +08:00
|
|
|
<<: *default_dependencies
|
2022-07-13 10:34:02 +08:00
|
|
|
disable:
|
2024-03-27 10:56:13 +05:30
|
|
|
- if: SOC_DIG_SIGN_SUPPORTED != 1
|
2023-01-09 20:58:27 +08:00
|
|
|
temporary: false
|
|
|
|
reason: DS not present
|
2022-07-13 10:34:02 +08:00
|
|
|
|
|
|
|
examples/protocols/mqtt/tcp:
|
2023-12-27 22:31:37 +08:00
|
|
|
<<: *default_dependencies
|
2023-08-17 10:45:23 +08:00
|
|
|
disable:
|
2024-03-21 11:33:57 +01:00
|
|
|
- if: IDF_TARGET == "esp32c5"
|
2023-08-17 10:45:23 +08:00
|
|
|
temporary: true
|
2024-03-21 11:33:57 +01:00
|
|
|
reason: not supported on c5 # TODO: [ESP32C5] IDF-8697
|
2022-07-13 10:34:02 +08:00
|
|
|
disable_test:
|
2023-01-09 20:58:27 +08:00
|
|
|
- if: IDF_TARGET != "esp32"
|
2023-12-27 22:31:37 +08:00
|
|
|
reason: only test on esp32
|
2022-07-13 10:34:02 +08:00
|
|
|
|
|
|
|
examples/protocols/mqtt/ws:
|
2023-12-27 22:31:37 +08:00
|
|
|
<<: *default_dependencies
|
2023-08-17 10:45:23 +08:00
|
|
|
disable:
|
2024-03-21 11:33:57 +01:00
|
|
|
- if: IDF_TARGET == "esp32c5"
|
2023-08-17 10:45:23 +08:00
|
|
|
temporary: true
|
2024-03-21 11:33:57 +01:00
|
|
|
reason: not supported on c5 # TODO: [ESP32C5] IDF-8697
|
2022-07-13 10:34:02 +08:00
|
|
|
disable_test:
|
2023-01-09 20:58:27 +08:00
|
|
|
- if: IDF_TARGET != "esp32"
|
2023-12-27 22:31:37 +08:00
|
|
|
reason: only test on esp32
|
2022-07-13 10:34:02 +08:00
|
|
|
|
|
|
|
examples/protocols/mqtt/wss:
|
2023-12-27 22:31:37 +08:00
|
|
|
<<: *default_dependencies
|
2023-08-17 10:45:23 +08:00
|
|
|
disable:
|
2024-03-21 11:33:57 +01:00
|
|
|
- if: IDF_TARGET == "esp32c5"
|
2023-08-17 10:45:23 +08:00
|
|
|
temporary: true
|
2024-03-21 11:33:57 +01:00
|
|
|
reason: not supported on c5 # TODO: [ESP32C5] IDF-8697
|
2022-07-13 10:34:02 +08:00
|
|
|
disable_test:
|
2023-01-09 20:58:27 +08:00
|
|
|
- if: IDF_TARGET != "esp32"
|
2023-12-27 22:31:37 +08:00
|
|
|
reason: only test on esp32
|
2022-07-13 10:34:02 +08:00
|
|
|
|
2022-07-27 20:52:04 +08:00
|
|
|
examples/protocols/mqtt5:
|
2023-12-27 22:31:37 +08:00
|
|
|
<<: *default_dependencies
|
2023-08-17 10:45:23 +08:00
|
|
|
disable:
|
2024-03-21 11:33:57 +01:00
|
|
|
- if: IDF_TARGET == "esp32c5"
|
2023-08-17 10:45:23 +08:00
|
|
|
temporary: true
|
2024-03-21 11:33:57 +01:00
|
|
|
reason: not supported on c5 # TODO: [ESP32C5] IDF-8697
|
2022-07-27 20:52:04 +08:00
|
|
|
disable_test:
|
2023-01-09 20:58:27 +08:00
|
|
|
- if: IDF_TARGET != "esp32"
|
2023-12-27 22:31:37 +08:00
|
|
|
reason: only test on esp32
|
2022-07-27 20:52:04 +08:00
|
|
|
|
2023-08-17 10:45:23 +08:00
|
|
|
examples/protocols/smtp_client:
|
2023-12-27 22:31:37 +08:00
|
|
|
<<: *default_dependencies
|
2023-08-17 10:45:23 +08:00
|
|
|
disable:
|
2024-04-01 12:25:38 +08:00
|
|
|
- if: IDF_TARGET in ["esp32p4", "esp32c5"]
|
2023-08-17 10:45:23 +08:00
|
|
|
temporary: true
|
2024-04-01 12:25:38 +08:00
|
|
|
reason: not supported on p4 and c5 # TODO: [ESP32C5] IDF-8697
|
2023-08-17 10:45:23 +08:00
|
|
|
|
2022-07-13 10:34:02 +08:00
|
|
|
examples/protocols/sntp:
|
2023-12-27 22:31:37 +08:00
|
|
|
<<: *default_dependencies
|
2022-07-13 10:34:02 +08:00
|
|
|
enable:
|
|
|
|
- if: IDF_TARGET == "esp32"
|
|
|
|
temporary: true
|
|
|
|
reason: the other targets are not tested yet
|
|
|
|
|
2023-08-17 10:45:23 +08:00
|
|
|
examples/protocols/sockets:
|
2023-12-27 22:31:37 +08:00
|
|
|
<<: *default_dependencies
|
2023-08-17 10:45:23 +08:00
|
|
|
disable:
|
2024-04-01 12:25:38 +08:00
|
|
|
- if: IDF_TARGET in ["esp32p4", "esp32c5"]
|
2023-08-17 10:45:23 +08:00
|
|
|
temporary: true
|
2024-04-01 12:25:38 +08:00
|
|
|
reason: not supported on p4 and c5 # TODO: [ESP32C5] IDF-8697
|
2023-12-27 22:31:37 +08:00
|
|
|
disable_test:
|
|
|
|
- if: SOC_WIFI_SUPPORTED != 1
|
|
|
|
|
2023-08-17 10:45:23 +08:00
|
|
|
|
2022-07-13 10:34:02 +08:00
|
|
|
examples/protocols/sockets/non_blocking:
|
2023-12-27 22:31:37 +08:00
|
|
|
<<: *default_dependencies
|
2022-07-13 10:34:02 +08:00
|
|
|
disable_test:
|
|
|
|
- if: IDF_TARGET != "esp32"
|
|
|
|
temporary: true
|
|
|
|
reason: lack of runners
|
|
|
|
|
|
|
|
examples/protocols/sockets/tcp_client:
|
2023-12-27 22:31:37 +08:00
|
|
|
<<: *default_dependencies
|
2022-07-13 10:34:02 +08:00
|
|
|
disable_test:
|
2023-07-20 22:06:03 +08:00
|
|
|
- if: SOC_WIFI_SUPPORTED != 1
|
2023-11-27 11:54:56 +01:00
|
|
|
# linux target won't work with CONFIG_EXAMPLE_SOCKET_IP_INPUT_STDIN=y
|
2023-08-17 10:45:23 +08:00
|
|
|
disable:
|
2024-04-01 12:25:38 +08:00
|
|
|
- if: IDF_TARGET in ["esp32p4", "esp32c5"]
|
2023-08-17 10:45:23 +08:00
|
|
|
temporary: true
|
2024-04-01 12:25:38 +08:00
|
|
|
reason: not supported on p4 and c5 # TODO: [ESP32C5] IDF-8697
|
2023-01-10 13:59:46 +08:00
|
|
|
|
|
|
|
examples/protocols/static_ip:
|
2023-12-27 22:31:37 +08:00
|
|
|
<<: *default_dependencies
|
2023-01-10 13:59:46 +08:00
|
|
|
disable:
|
|
|
|
- if: IDF_TARGET in ["esp32h2"]
|
2024-04-01 12:25:38 +08:00
|
|
|
- if: IDF_TARGET in ["esp32p4", "esp32c5"]
|
2023-08-17 10:45:23 +08:00
|
|
|
temporary: true
|
2024-04-01 12:25:38 +08:00
|
|
|
reason: not supported on p4 and c5 # TODO: [ESP32C5] IDF-8697
|