mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
29 lines
768 B
YAML
29 lines
768 B
YAML
# Documentation: .gitlab/ci/README.md#manifest-file-to-control-the-buildtest-apps
|
|
|
|
examples/network/bridge:
|
|
disable_test:
|
|
- if: IDF_TARGET != "esp32"
|
|
reason: Generic functionality, no need to be run on specific targets
|
|
depends_filepatterns:
|
|
- components/driver/spi/**/*
|
|
|
|
examples/network/eth2ap:
|
|
disable:
|
|
- if: SOC_WIFI_SUPPORTED != 1
|
|
|
|
examples/network/simple_sniffer:
|
|
disable:
|
|
- if: SOC_WIFI_SUPPORTED != 1
|
|
disable_test:
|
|
- if: IDF_TARGET not in ["esp32", "esp32c3", "esp32s3"]
|
|
temporary: true
|
|
reason: lack of runners
|
|
|
|
examples/network/sta2eth:
|
|
disable:
|
|
- if: SOC_WIFI_SUPPORTED != 1
|
|
examples/network/vlan_support:
|
|
disable_test:
|
|
- if: IDF_TARGET not in ["esp32"]
|
|
reason: Runner uses esp32 ethernet kit
|