kopia lustrzana https://github.com/espressif/esp-idf
Merge branch 'feature/eth_build_test_rules_cleanup' into 'master'
Ethernet related .build-test-rules.yml cleanup Closes IDF-5551 See merge request espressif/esp-idf!24300pull/11819/head
commit
7f2257ca2d
|
@ -1,11 +1,5 @@
|
|||
# Documentation: .gitlab/ci/README.md#manifest-file-to-control-the-buildtest-apps
|
||||
|
||||
examples/ethernet/eth2ap:
|
||||
disable:
|
||||
- if: IDF_TARGET == "esp32h2"
|
||||
temporary: true
|
||||
reason: esp32h2 is not supported
|
||||
|
||||
examples/ethernet/iperf:
|
||||
disable_test:
|
||||
- if: IDF_TARGET not in ["esp32"]
|
||||
|
|
|
@ -4,13 +4,19 @@ examples/network/bridge:
|
|||
disable_test:
|
||||
- if: IDF_TARGET != "esp32"
|
||||
reason: Generic functionality, no need to be run on specific targets
|
||||
|
||||
examples/network/eth2ap:
|
||||
disable:
|
||||
- if: SOC_WIFI_SUPPORTED != 1
|
||||
|
||||
examples/network/simple_sniffer:
|
||||
disable:
|
||||
- if: IDF_TARGET in ["esp32h2"]
|
||||
- if: SOC_WIFI_SUPPORTED != 1
|
||||
disable_test:
|
||||
- if: IDF_TARGET not in ["esp32", "esp32c3", "esp32s3"]
|
||||
temporary: true
|
||||
reason: lack of runners
|
||||
examples/network/sta_to_eth:
|
||||
|
||||
examples/network/sta2eth:
|
||||
disable:
|
||||
- if: SOC_WIFI_SUPPORTED != 1
|
||||
|
|
Przed Szerokość: | Wysokość: | Rozmiar: 87 KiB Po Szerokość: | Wysokość: | Rozmiar: 87 KiB |
|
@ -1,3 +1,8 @@
|
|||
/*
|
||||
* SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD
|
||||
*
|
||||
* SPDX-License-Identifier: Unlicense OR CC0-1.0
|
||||
*/
|
||||
/* eth2ap (Ethernet to Wi-Fi AP packet forwarding) Example
|
||||
|
||||
This example code is in the Public Domain (or CC0 licensed, at your option.)
|
|
@ -10,7 +10,7 @@ else()
|
|||
set(wired_iface usb_ncm_iface.c)
|
||||
endif()
|
||||
|
||||
idf_component_register(SRCS sta_to_eth_main.c
|
||||
idf_component_register(SRCS sta2eth_main.c
|
||||
${wired_iface}
|
||||
${config_method}
|
||||
INCLUDE_DIRS "")
|
Ładowanie…
Reference in New Issue