Skip to content

Commit 9f5a3d8

Browse files
committed
CI: Fix ESP32-P4 requiring ipv6/ipv4 data structures
The network bridge currently uses and requires the universal ipv4/ipv6 data structures to be available. Signed-off-by: Peter M <petermm@gmail.com>
1 parent 599ed7b commit 9f5a3d8

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)