Skip to content

Commit

Permalink
Update Espressif IDF to v4.4.6 (#2799)
Browse files Browse the repository at this point in the history
***NO_CI***
  • Loading branch information
josesimoes committed Oct 24, 2023
1 parent 681c449 commit e08a522
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile.ESP32
Original file line number Diff line number Diff line change
@@ -1 +1 @@
FROM ghcr.io/nanoframework/dev-container-esp32:v2.26
FROM ghcr.io/nanoframework/dev-container-esp32:v2.27
2 changes: 1 addition & 1 deletion .devcontainer/sources/Dockerfile.ESP32
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ RUN mkdir -p /usr/local/bin/gcc
RUN git clone --branch R0.14b https://github.com/abbrev/fatfs.git --depth 1 ./sources/fatfs

# Clone ESP-IDF
RUN git clone --branch v4.4.5 https://github.com/espressif/esp-idf --depth 1 --recursive ./sources/esp-idf
RUN git clone --branch v4.4.6 https://github.com/espressif/esp-idf --depth 1 --recursive ./sources/esp-idf

# Creating static link python for pyhton3
RUN ln -fs /usr/bin/python3 /usr/bin/python \
Expand Down
2 changes: 1 addition & 1 deletion azure-pipelines-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ resources:
type: github
name: espressif/esp-idf
endpoint: nanoframework
ref: refs/tags/v4.4.5
ref: refs/tags/v4.4.6

# scheduled build
# the schedule is defined at the AZDO web interface because of inconsistencies with time zones
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ steps:
- task: Cache@2
displayName: Cache ESP32 tools
inputs:
key: 'esp32_tools | 4_4_4'
restoreKeys: 4_4_4
key: 'esp32_tools | 4_4_6'
restoreKeys: 4_4_6
path: $(UserProfile)\.espressif\tools
cacheHitVar: ESP32_TOOLS_CACHE_RESTORED

Expand Down
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ resources:
type: github
name: espressif/esp-idf
endpoint: nanoframework
ref: refs/tags/v4.4.5
ref: refs/tags/v4.4.6
- repository: mscorlib
type: github
name: nanoframework/CoreLibrary
Expand Down
2 changes: 1 addition & 1 deletion targets/ESP32/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ endif()
# WHEN CHANGING THIS MAKE SURE TO UPDATE:
# 1. the dev containers
# 2. ref in AZDO pipeline yaml in Community Targets repo
set(ESP32_IDF_TAG "4.4.5" CACHE INTERNAL "ESP32 IDF tag")
set(ESP32_IDF_TAG "4.4.6" CACHE INTERNAL "ESP32 IDF tag")

if(NO_ESP32_IDF_PATH)
# no ESP32 IDF source specified, download it from official repo
Expand Down

0 comments on commit e08a522

Please sign in to comment.