2022-07-13 10:34:02 +08:00
|
|
|
# Documentation: .gitlab/ci/README.md#manifest-file-to-control-the-buildtest-apps
|
|
|
|
|
2023-03-31 17:24:16 +02:00
|
|
|
examples/network/bridge:
|
2025-01-22 10:41:07 +08:00
|
|
|
disable:
|
|
|
|
- if: IDF_TARGET == "esp32h21"
|
|
|
|
temporary: true
|
|
|
|
reason: not supported yet # TODO: [ESP32H21] IDF-12203
|
2023-03-31 17:24:16 +02:00
|
|
|
disable_test:
|
|
|
|
- if: IDF_TARGET != "esp32"
|
|
|
|
reason: Generic functionality, no need to be run on specific targets
|
2023-10-19 14:38:32 +08:00
|
|
|
depends_components:
|
2024-05-02 16:21:03 +02:00
|
|
|
- esp_eth
|
|
|
|
- esp_netif
|
|
|
|
- lwip
|
2023-10-19 14:38:32 +08:00
|
|
|
- esp_driver_spi
|
2023-06-19 16:09:28 +02:00
|
|
|
|
|
|
|
examples/network/eth2ap:
|
|
|
|
disable:
|
|
|
|
- if: SOC_WIFI_SUPPORTED != 1
|
2024-05-02 16:21:03 +02:00
|
|
|
depends_components:
|
|
|
|
- esp_eth
|
|
|
|
- esp_wifi
|
2023-06-19 16:09:28 +02:00
|
|
|
|
2022-07-13 10:34:02 +08:00
|
|
|
examples/network/simple_sniffer:
|
2023-01-10 13:59:46 +08:00
|
|
|
disable:
|
2023-06-19 16:09:28 +02:00
|
|
|
- if: SOC_WIFI_SUPPORTED != 1
|
2023-11-30 17:01:23 +01:00
|
|
|
depends_components:
|
2025-01-06 18:04:53 +08:00
|
|
|
- esp_wifi
|
|
|
|
- fatfs
|
|
|
|
- esp_eth
|
2023-06-19 16:09:28 +02:00
|
|
|
|
2023-06-20 08:55:51 +02:00
|
|
|
examples/network/sta2eth:
|
2023-06-01 22:44:11 +02:00
|
|
|
disable:
|
|
|
|
- if: SOC_WIFI_SUPPORTED != 1
|
2024-05-02 16:21:03 +02:00
|
|
|
depends_components:
|
|
|
|
- esp_eth
|
|
|
|
- esp_wifi
|
|
|
|
- protocomm
|
|
|
|
- usb
|
|
|
|
- esp_tinyusb
|
|
|
|
- http-server
|
2024-01-02 14:06:00 +01:00
|
|
|
|
2023-03-15 18:15:45 +11:00
|
|
|
examples/network/vlan_support:
|
|
|
|
disable_test:
|
|
|
|
- if: IDF_TARGET not in ["esp32"]
|
|
|
|
reason: Runner uses esp32 ethernet kit
|
2024-01-02 14:06:00 +01:00
|
|
|
depends_components:
|
|
|
|
- esp_eth
|
2025-01-06 18:04:53 +08:00
|
|
|
- esp_netif
|
2024-01-02 14:06:00 +01:00
|
|
|
depends_filepatterns:
|
2025-01-06 18:04:53 +08:00
|
|
|
- examples/ethernet/basic/components/ethernet_init/**/*
|