mirror of
https://github.com/espressif/esp-idf
synced 2025-03-09 09:09:10 -04:00
52 lines
1.1 KiB
YAML
52 lines
1.1 KiB
YAML
# Documentation: .gitlab/ci/README.md#manifest-file-to-control-the-buildtest-apps
|
|
|
|
examples/network/bridge:
|
|
disable:
|
|
- if: IDF_TARGET == "esp32h21"
|
|
temporary: true
|
|
reason: not supported yet # TODO: [ESP32H21] IDF-12203
|
|
disable_test:
|
|
- if: IDF_TARGET != "esp32"
|
|
reason: Generic functionality, no need to be run on specific targets
|
|
depends_components:
|
|
- esp_eth
|
|
- esp_netif
|
|
- lwip
|
|
- esp_driver_spi
|
|
|
|
examples/network/eth2ap:
|
|
disable:
|
|
- if: SOC_WIFI_SUPPORTED != 1
|
|
depends_components:
|
|
- esp_eth
|
|
- esp_wifi
|
|
|
|
examples/network/simple_sniffer:
|
|
disable:
|
|
- if: SOC_WIFI_SUPPORTED != 1
|
|
depends_components:
|
|
- esp_wifi
|
|
- fatfs
|
|
- esp_eth
|
|
|
|
examples/network/sta2eth:
|
|
disable:
|
|
- if: SOC_WIFI_SUPPORTED != 1
|
|
depends_components:
|
|
- esp_eth
|
|
- esp_wifi
|
|
- protocomm
|
|
- usb
|
|
- esp_tinyusb
|
|
- http-server
|
|
|
|
examples/network/vlan_support:
|
|
disable_test:
|
|
- if: IDF_TARGET not in ["esp32"]
|
|
reason: Runner uses esp32 ethernet kit
|
|
depends_components:
|
|
- esp_eth
|
|
- esp_netif
|
|
depends_filepatterns:
|
|
- examples/ethernet/basic/components/ethernet_init/**/*
|