Files
esp-idf/examples/ethernet/.build-test-rules.yml
Ondrej Kosta 8b77c649c2 ci(esp_eth): add S31 coverage and drop external driver test_apps
Add YT8531/S31 tests for esp_eth, eth basic, and iperf. Remove
test_apps coverage of drivers maintained outside IDF.
2026-08-12 13:07:42 +08:00

39 lines
927 B
YAML

# Documentation: .gitlab/ci/README.md#manifest-file-to-control-the-buildtest-apps
examples/ethernet/basic:
enable:
- if: INCLUDE_DEFAULT == 1
disable:
- if: IDF_TARGET not in ["esp32", "esp32p4", "esp32s31"]
temporary: true
reason: lack of runners
depends_components:
- esp_eth
- esp_netif
- lwip
- esp_driver_gpio
examples/ethernet/iperf:
disable:
- if: IDF_TARGET in ["esp32h21", "esp32h4"]
temporary: true
reason: not supported yet # TODO: [ESP32H21] IDF-11581 [ESP32H4] IDF-12360
- if: IDF_TARGET not in ["esp32", "esp32p4", "esp32s31"]
temporary: true
reason: lack of runners
depends_components:
- esp_eth
- esp_netif
- lwip
- console
- esp_driver_gpio
- esp_driver_spi
- cmd_system
examples/ethernet/ptp:
enable:
- if: SOC_EMAC_IEEE1588V2_SUPPORTED == 1
depends_components:
- esp_eth
- esp_netif