From f1ac17551677b5bf33bbff5c5db99a9992aba2f8 Mon Sep 17 00:00:00 2001 From: Piotr Stolarz Date: Tue, 3 Sep 2024 23:13:04 +0200 Subject: [PATCH] CI/CD: moved to ESP-IDF 5.3.1 --- .github/espidf-ci/Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/espidf-ci/Dockerfile b/.github/espidf-ci/Dockerfile index 83e280e..5b5a58c 100644 --- a/.github/espidf-ci/Dockerfile +++ b/.github/espidf-ci/Dockerfile @@ -13,11 +13,10 @@ RUN apt-get update && \ python3 \ python3-pip \ python3-venv \ + python3-virtualenv \ sudo RUN apt-get clean -RUN pip3 install pyserial - RUN cd /usr/bin && \ ln -sf python3 python && \ ln -sf pip3 pip @@ -27,7 +26,7 @@ RUN ln -sf /bin/bash /bin/sh RUN cd / && \ git clone https://github.com/espressif/esp-idf && \ cd esp-idf && \ - git checkout v5.2.1 && \ + git checkout v5.3.1 && \ git submodule update --init --recursive RUN cd /esp-idf && \