build: bypass build issues

This commit is contained in:
Fu Hanxi 2023-11-27 11:54:56 +01:00
parent 3f03e56bb8
commit c1301c6145
No known key found for this signature in database
GPG Key ID: 19399699CF3C4B16
6 changed files with 16 additions and 10 deletions

View File

@ -15,7 +15,6 @@ components/fatfs/test_apps/flash_wl:
disable_test: disable_test:
- if: IDF_TARGET not in ["esp32", "esp32c3"] - if: IDF_TARGET not in ["esp32", "esp32c3"]
reason: only one target per arch needed reason: only one target per arch needed
depends_components: depends_components:
- esp_partition - esp_partition
- spi_flash - spi_flash

View File

@ -1,6 +1,14 @@
# For users checking this example, ignore the following code. This is so that # For users checking this example, ignore the following code. This is so that
# the prebuilt project is built automatically in ESP-IDF CI. # the prebuilt project is built automatically in ESP-IDF CI.
if("$ENV{CI}") if("$ENV{CI}")
# otherwise these file won't be rebuilt when switching the built target within the same job
file(REMOVE
${CMAKE_SOURCE_DIR}/prebuilt/sdkconfig
${CMAKE_SOURCE_DIR}/main/libprebuilt.a
${CMAKE_SOURCE_DIR}/main/prebuilt.h
)
file(REMOVE_RECURSE ${CMAKE_SOURCE_DIR}/prebuilt/build)
execute_process(COMMAND ${IDFTOOL} build execute_process(COMMAND ${IDFTOOL} build
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/prebuilt) WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/prebuilt)
endif() endif()

View File

@ -282,8 +282,7 @@ examples/protocols/sockets/non_blocking:
examples/protocols/sockets/tcp_client: examples/protocols/sockets/tcp_client:
disable_test: disable_test:
- if: SOC_WIFI_SUPPORTED != 1 - if: SOC_WIFI_SUPPORTED != 1
enable: # linux target won't work with CONFIG_EXAMPLE_SOCKET_IP_INPUT_STDIN=y
- if: INCLUDE_DEFAULT == 1 or IDF_TARGET == "linux"
disable: disable:
- if: IDF_TARGET == "esp32p4" - if: IDF_TARGET == "esp32p4"
temporary: true temporary: true

View File

@ -1,5 +1,5 @@
| Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-C6 | ESP32-H2 | ESP32-S2 | ESP32-S3 | Linux | | Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-C6 | ESP32-H2 | ESP32-S2 | ESP32-S3 |
| ----------------- | ----- | -------- | -------- | -------- | -------- | -------- | -------- | ----- | | ----------------- | ----- | -------- | -------- | -------- | -------- | -------- | -------- |
# TCP Client example # TCP Client example

View File

@ -1,6 +1,3 @@
## IDF Component Manager Manifest File ## IDF Component Manager Manifest File
dependencies: dependencies:
joltwallet/littlefs: "==1.5.5" joltwallet/littlefs: "~=1.10.0"
## Required IDF version
idf:
version: ">=5.2.0"

View File

@ -195,6 +195,9 @@ examples/system/ota/pre_encrypted_ota:
- if: IDF_TARGET in ["esp32h2", "esp32p4"] - if: IDF_TARGET in ["esp32h2", "esp32p4"]
temporary: true temporary: true
reason: target esp32h2, esp32p4 is not supported yet reason: target esp32h2, esp32p4 is not supported yet
- if: CONFIG_NAME == "partial_download" and IDF_TARGET == "esp32c3"
temporary: true
reason: build failed
disable_test: disable_test:
- if: IDF_TARGET == "esp32c2" or IDF_TARGET == "esp32c6" - if: IDF_TARGET == "esp32c2" or IDF_TARGET == "esp32c6"
temporary: true temporary: true