Update esp-idf version to v5.4.1

This commit is contained in:
shripad621git
2025-05-22 16:31:22 +05:30
parent d69bf58e57
commit abd987fefa
6 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ on:
env:
DOCKERHUB_REPO: ${{ github.repository }}
REQUIRED_IDF_VERSION: v5.2.3
REQUIRED_IDF_VERSION: v5.4.1
jobs:
build:
+2 -2
View File
@@ -22,7 +22,7 @@ variables:
MATTER_CACHE_DIR: /cache/matter_build
# This variable represents the latest idf version supported for the target branch.
# Note: Do change this variable in case of idf version change MR.
IDF_CHECKOUT_REF: "v5.2.3"
IDF_CHECKOUT_REF: "v5.4.1"
# This variable represents the short hash of the connectedhomeip submodule.
# Note: Do change this short hash on submodule update MRs.
CHIP_SHORT_HASH: "19aeeb3ba0"
@@ -209,7 +209,7 @@ build_image:
# Change the idf version here in case of idf version change MR.
- IDF_VERSION:
- "v4.4.3"
- "v5.2.3"
- "v5.4.1"
.build_examples_template:
stage: build
+1 -1
View File
@@ -29,7 +29,7 @@ section in the ESP-Matter Programming Guide.
## Supported ESP-IDF and connectedhomeip versions
- This SDK currently works with commit [19aeeb3ba0](https://github.com/project-chip/connectedhomeip/tree/19aeeb3ba0) of connectedhomeip.
- For Matter projects development with this SDK, it is recommended to utilize ESP-IDF [v5.2.3](https://github.com/espressif/esp-idf/tree/v5.2.3).
- For Matter projects development with this SDK, it is recommended to utilize ESP-IDF [v5.4.1](https://github.com/espressif/esp-idf/tree/v5.4.1).
## Documentation
+1 -1
View File
@@ -62,7 +62,7 @@ Cloning esp-idf:
::
git clone --recursive https://github.com/espressif/esp-idf.git
cd esp-idf; git checkout v5.2.3; git submodule update --init --recursive;
cd esp-idf; git checkout v5.4.1; git submodule update --init --recursive;
./install.sh
cd ..
+1 -1
View File
@@ -1,7 +1,7 @@
5. Security Considerations
==========================
{IDF_TARGET_RELEASE:default="v5.2.3"}
{IDF_TARGET_RELEASE:default="v5.4.1"}
5.1 Overview
------------
+1 -1
View File
@@ -4,7 +4,7 @@ FROM ghcr.io/project-chip/chip-build:${VERSION} as build
# Use IDF_CHECKOUT_REF to specify a tag, a branch or a specific commit ID.
ARG IDF_CLONE_URL=https://github.com/espressif/esp-idf.git
ARG IDF_CHECKOUT_REF=v5.2.3
ARG IDF_CHECKOUT_REF=v5.4.1
# install requirements for pytest
RUN set -x \