mirror of
https://github.com/espressif/esp-idf.git
synced 2026-06-04 20:26:38 +03:00
32 lines
968 B
YAML
32 lines
968 B
YAML
# Documentation: .gitlab/ci/README.md#manifest-file-to-control-the-buildtest-apps
|
|
|
|
tools/test_apps/protocols/esp_netif/build_config:
|
|
enable:
|
|
- if: IDF_TARGET in ["esp32", "esp32c2"]
|
|
temporary: false
|
|
reason: No need to test on all targets
|
|
|
|
tools/test_apps/protocols/mqtt/publish_connect_test:
|
|
enable:
|
|
- if: IDF_TARGET in ["esp32", "esp32c3", "esp32s2"]
|
|
temporary: true
|
|
reason: the other targets are not tested yet
|
|
disable_test:
|
|
- if: IDF_TARGET not in ["esp32"]
|
|
temporary: true
|
|
reason: lack of runners
|
|
depends_components:
|
|
- mqtt
|
|
- esp_netif
|
|
depends_filepatterns:
|
|
- tools/ci/python_packages/common_test_methods.py
|
|
- examples/common_components/**/*
|
|
- examples/protocols/mqtt/*
|
|
- examples/protocols/mqtt5/*
|
|
|
|
tools/test_apps/protocols/netif_components:
|
|
enable:
|
|
- if: IDF_TARGET == "esp32"
|
|
temporary: true
|
|
reason: one target is enough to verify netif component dependencies
|