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:
|
|
|
|
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
|
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"]
|
2022-07-13 10:34:02 +08:00
|
|
|
temporary: true
|
2022-12-07 18:07:07 +08:00
|
|
|
reason: lack of runners
|
2023-11-30 17:01:23 +01:00
|
|
|
depends_filepatterns:
|
|
|
|
- tools/ci/python_packages/common_test_methods.py
|
|
|
|
- examples/protocols/**/*
|
|
|
|
- examples/wifi/**/*
|
|
|
|
- examples/network/simple_sniffer/**/*
|
|
|
|
- components/mbedtls/port/dynamic/*
|
|
|
|
- examples/system/ota/**/*
|
|
|
|
depends_components:
|
|
|
|
- app_update
|
|
|
|
- esp_https_ota
|
2024-05-07 11:22:08 +02:00
|
|
|
- protocol_examples_common
|
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
|
|
|
|
depends_filepatterns:
|
|
|
|
- tools/ci/python_packages/common_test_methods.py
|
|
|
|
- examples/common_components/**/*
|
|
|
|
- examples/protocols/**/*
|
|
|
|
- examples/system/ota/**/*
|
|
|
|
- examples/ethernet/iperf/**/*
|
|
|
|
- examples/network/vlan_support/**/*
|
|
|
|
- components/esp_netif/esp_netif_handlers.c
|