2022-07-12 22:34:02 -04:00
|
|
|
# Documentation: .gitlab/ci/README.md#manifest-file-to-control-the-buildtest-apps
|
|
|
|
|
2023-09-26 09:54:35 -04:00
|
|
|
.wifi_depends_default: &wifi_depends_default
|
|
|
|
depends_components:
|
|
|
|
- esp_wifi
|
|
|
|
- esp_phy
|
|
|
|
- esp_netif
|
|
|
|
- esp_event
|
|
|
|
- esp_coex
|
|
|
|
- wpa_supplicant
|
|
|
|
- mbedtls
|
|
|
|
- nvs_flash
|
|
|
|
- console
|
|
|
|
- esp_pm
|
|
|
|
depends_filepatterns:
|
|
|
|
- examples/common_components/protocol_examples_common/**/*
|
|
|
|
|
2022-07-12 22:34:02 -04:00
|
|
|
examples/wifi:
|
2023-09-26 09:54:35 -04:00
|
|
|
<<: *wifi_depends_default
|
2022-07-12 22:34:02 -04:00
|
|
|
disable:
|
2023-01-09 07:58:27 -05:00
|
|
|
- if: SOC_WIFI_SUPPORTED != 1
|
2022-07-12 22:34:02 -04:00
|
|
|
|
|
|
|
examples/wifi/ftm:
|
2023-09-26 09:54:35 -04:00
|
|
|
<<: *wifi_depends_default
|
2023-07-05 06:34:03 -04:00
|
|
|
disable:
|
|
|
|
- if: SOC_WIFI_FTM_SUPPORT != 1
|
|
|
|
reason: requires hardware support
|
2022-07-12 22:34:02 -04:00
|
|
|
|
|
|
|
examples/wifi/getting_started:
|
2023-09-26 09:54:35 -04:00
|
|
|
<<: *wifi_depends_default
|
2023-01-10 00:59:46 -05:00
|
|
|
disable:
|
|
|
|
- if: SOC_WIFI_SUPPORTED != 1
|
2022-07-12 22:34:02 -04:00
|
|
|
disable_test:
|
2022-12-07 05:07:07 -05:00
|
|
|
- if: IDF_TARGET not in ["esp32", "esp32c3", "esp32c2", "esp32s3"]
|
2022-07-12 22:34:02 -04:00
|
|
|
temporary: true
|
|
|
|
reason: lack of runners
|
2023-06-30 02:28:36 -04:00
|
|
|
depends_filepatterns:
|
|
|
|
- examples/wifi/getting_started/**/*
|
2022-07-12 22:34:02 -04:00
|
|
|
|
|
|
|
examples/wifi/iperf:
|
2023-01-10 00:59:46 -05:00
|
|
|
disable:
|
|
|
|
- if: SOC_WIFI_SUPPORTED != 1
|
2022-07-12 22:34:02 -04:00
|
|
|
disable_test:
|
|
|
|
- if: IDF_TARGET != "esp32"
|
|
|
|
temporary: true
|
|
|
|
reason: lack of runners
|
2023-09-26 09:54:35 -04:00
|
|
|
depends_components:
|
|
|
|
- esp_wifi
|
|
|
|
- esp_phy
|
|
|
|
- esp_netif
|
|
|
|
- lwip
|
|
|
|
- esp_event
|
|
|
|
- esp_coex
|
|
|
|
- wpa_supplicant
|
|
|
|
depends_filepatterns:
|
|
|
|
- examples/common_components/iperf/**/*
|
|
|
|
- examples/system/console/advanced/components/cmd_system/**/*
|
2022-12-28 23:58:02 -05:00
|
|
|
|
|
|
|
examples/wifi/itwt:
|
2023-09-26 09:54:35 -04:00
|
|
|
<<: *wifi_depends_default
|
2023-01-09 07:58:27 -05:00
|
|
|
disable:
|
|
|
|
- if: SOC_WIFI_HE_SUPPORT != 1
|
2023-02-13 23:36:40 -05:00
|
|
|
|
2023-08-21 02:36:41 -04:00
|
|
|
examples/wifi/power_save:
|
2023-09-26 09:54:35 -04:00
|
|
|
<<: *wifi_depends_default
|
2023-08-21 02:36:41 -04:00
|
|
|
disable:
|
2023-08-04 08:17:45 -04:00
|
|
|
- if: SOC_WIFI_SUPPORTED != 1
|
2023-09-26 09:54:35 -04:00
|
|
|
depends_filepatterns:
|
|
|
|
- components/driver/uart/**/*
|
2023-08-04 08:17:45 -04:00
|
|
|
|
2023-02-13 23:36:40 -05:00
|
|
|
examples/wifi/wifi_aware:
|
|
|
|
disable:
|
|
|
|
- if: SOC_WIFI_NAN_SUPPORT != 1
|
|
|
|
reason: targets esp32c3, esp32s3, esp32c2 and esp32c6 are not supported
|
2023-09-26 09:54:35 -04:00
|
|
|
depends_components:
|
|
|
|
- esp_wifi
|
|
|
|
- esp_phy
|
|
|
|
- esp_netif
|
|
|
|
- lwip
|
|
|
|
- esp_event
|
|
|
|
- esp_coex
|
|
|
|
- wpa_supplicant
|
|
|
|
- mbedtls
|
|
|
|
- nvs_flash
|
|
|
|
depends_filepatterns:
|
|
|
|
- examples/system/console/advanced/components/**/*
|