Skip to content

Commit

Permalink
[ESP32] Update ESP-IDF in CHIP to v4.4.3 release (#23568)
Browse files Browse the repository at this point in the history
  • Loading branch information
jadhavrohit924 authored and pull[bot] committed Jul 26, 2023
1 parent e8aa990 commit 1151674
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions docs/guides/esp32/setup_idf_chip.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,27 +13,27 @@ step.

### Install Prerequisites

- [Linux](https://docs.espressif.com/projects/esp-idf/en/v4.4.2/esp32/get-started/linux-setup.html)
- [macOS](https://docs.espressif.com/projects/esp-idf/en/v4.4.2/esp32/get-started/macos-setup.html)
- [Linux](https://docs.espressif.com/projects/esp-idf/en/v4.4.3/esp32/get-started/linux-setup.html)
- [macOS](https://docs.espressif.com/projects/esp-idf/en/v4.4.3/esp32/get-started/macos-setup.html)

### Get IDF v4.4.2
### Get IDF v4.4.3

- Clone ESP-IDF
[v4.4.2 release](https://github.com/espressif/esp-idf/releases/tag/v4.4.2)
[v4.4.3 release](https://github.com/espressif/esp-idf/releases/tag/v4.4.3)

```
$ git clone -b v4.4.2 --recursive https://github.com/espressif/esp-idf.git
$ git clone -b v4.4.3 --recursive https://github.com/espressif/esp-idf.git
$ cd esp-idf
$ ./install.sh
```
- To update an existing esp-idf toolchain to v4.4.2:
- To update an existing esp-idf toolchain to v4.4.3:
```
$ cd path/to/esp-idf
$ git fetch origin
$ git checkout v4.4.2
$ git reset --hard origin/v4.4.2
$ git checkout v4.4.3
$ git reset --hard origin/v4.4.3
$ git submodule update --recursive --init
$ git clean -fdx
$ ./install.sh
Expand Down
2 changes: 1 addition & 1 deletion integrations/docker/images/chip-build-esp32/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN set -x \
&& : # last line

RUN set -x \
&& git clone --recursive -b v4.4.2 --depth 1 --shallow-submodule https://github.com/espressif/esp-idf.git /tmp/esp-idf \
&& git clone --recursive -b v4.4.3 --depth 1 --shallow-submodule https://github.com/espressif/esp-idf.git /tmp/esp-idf \
&& : # last line

FROM connectedhomeip/chip-build:${VERSION}
Expand Down
2 changes: 1 addition & 1 deletion integrations/docker/images/chip-build/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.6.07 Version bump reason: Build glib-2.0 libs with TSAN
0.6.08 Version bump reason: Update ESP-IDF to v4.4.3 release

0 comments on commit 1151674

Please sign in to comment.