Skip to content

Commit fb85fc1

Browse files
committed
Merge pull request #1733 from petermm/fix-ipv6-required-esp32p4
CI: Fix ESP32-P4 requiring ipv6/ipv4 data structures These changes are made under both the "Apache 2.0" and the "GNU Lesser General Public License 2.1 or later" license terms (dual license). SPDX-License-Identifier: Apache-2.0 OR LGPL-2.1-or-later
2 parents 214b3ef + 9f5a3d8 commit fb85fc1

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.github/workflows/esp32-simtest.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,12 @@ jobs:
122122
pytest-embedded-qemu==1.12.1 \
123123
pytest-embedded-wokwi==1.12.1
124124
125+
- name: Remove esp_wifi_remote for esp32p4 - as it's not relevant for sim tests
126+
if: matrix.esp-idf-target == 'esp32p4'
127+
working-directory: ./src/platforms/esp32/components/avm_builtins/
128+
run: |
129+
rm idf_component.yml
130+
125131
- name: Set SDKCONFIG_DEFAULTS and Build ESP32-sim tests using idf.py
126132
working-directory: ./src/platforms/esp32/test/
127133
run: |

src/platforms/esp32/sdkconfig.defaults.esp32p4

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,6 @@ CONFIG_SPIRAM=y
1111
# (default options for esp32-p4-function-ev-board)
1212
CONFIG_LWIP_PPP_VJ_HEADER_COMPRESSION=n
1313
CONFIG_SLAVE_IDF_TARGET_ESP32C6=y
14+
CONFIG_LWIP_IPV6=y
1415
CONFIG_WIFI_RMT_EXTRA_IRAM_OPT=n
1516
CONFIG_WIFI_RMT_SLP_IRAM_OPT=n

0 commit comments

Comments
 (0)