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