From 13791f1ed9f82089627725f96c733794c09c9e47 Mon Sep 17 00:00:00 2001 From: Erik Olof Gunnar Andersson Date: Mon, 9 Dec 2024 16:51:38 +0100 Subject: [PATCH] Use latest stable esp idf release (#555) --- .devcontainer/Dockerfile | 2 +- .github/workflows/build.yml | 2 +- .github/workflows/release-beta.yml | 2 +- .github/workflows/release-factory-beta.yml | 4 ++-- .github/workflows/release-factory.yml | 4 ++-- .github/workflows/release.yml | 2 +- doc/unit_testing.md | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index c65f6a1..7c0f8fd 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,4 +1,4 @@ -FROM espressif/idf:v5.3.1 +FROM espressif/idf:v5.3.2 ARG DEBIAN_FRONTEND=nointeractive diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b46ea8d..686a7aa 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,7 +20,7 @@ jobs: - name: esp-idf build uses: espressif/esp-idf-ci-action@v1 with: - esp_idf_version: v5.3.1 + esp_idf_version: v5.3.2 target: esp32s3 command: GITHUB_ACTIONS="true" idf.py build path: '.' diff --git a/.github/workflows/release-beta.yml b/.github/workflows/release-beta.yml index de0d9a4..4e82073 100644 --- a/.github/workflows/release-beta.yml +++ b/.github/workflows/release-beta.yml @@ -24,7 +24,7 @@ jobs: - name: esp-idf build uses: espressif/esp-idf-ci-action@v1 with: - esp_idf_version: v5.3.1 + esp_idf_version: v5.3.2 target: esp32s3 command: GITHUB_ACTIONS="true" idf.py build path: '.' diff --git a/.github/workflows/release-factory-beta.yml b/.github/workflows/release-factory-beta.yml index 94a36fb..580b7ed 100644 --- a/.github/workflows/release-factory-beta.yml +++ b/.github/workflows/release-factory-beta.yml @@ -29,14 +29,14 @@ jobs: - name: esp-idf build uses: espressif/esp-idf-ci-action@v1 with: - esp_idf_version: v5.3.1 + esp_idf_version: v5.3.2 target: esp32s3 command: GITHUB_ACTIONS="true" idf.py build path: '.' - name: "esp-idf build factory config for ${{ matrix.build_type }}" uses: espressif/esp-idf-ci-action@v1 with: - esp_idf_version: v5.3.1 + esp_idf_version: v5.3.2 target: esp32s3 command: /opt/esp/idf/components/nvs_flash/nvs_partition_generator/nvs_partition_gen.py generate config-${{ matrix.build_type }}.cvs config.bin 0x6000 path: '.' diff --git a/.github/workflows/release-factory.yml b/.github/workflows/release-factory.yml index 5b6f68d..da992bb 100644 --- a/.github/workflows/release-factory.yml +++ b/.github/workflows/release-factory.yml @@ -29,14 +29,14 @@ jobs: - name: esp-idf build uses: espressif/esp-idf-ci-action@v1 with: - esp_idf_version: v5.3.1 + esp_idf_version: v5.3.2 target: esp32s3 command: GITHUB_ACTIONS="true" idf.py build path: '.' - name: "esp-idf build factory config for ${{ matrix.build_type }}" uses: espressif/esp-idf-ci-action@v1 with: - esp_idf_version: v5.3.1 + esp_idf_version: v5.3.2 target: esp32s3 command: /opt/esp/idf/components/nvs_flash/nvs_partition_generator/nvs_partition_gen.py generate config-${{ matrix.build_type }}.cvs config.bin 0x6000 path: '.' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e76f5fb..9f02d94 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,7 +24,7 @@ jobs: - name: esp-idf build uses: espressif/esp-idf-ci-action@v1 with: - esp_idf_version: v5.3.1 + esp_idf_version: v5.3.2 target: esp32s3 command: GITHUB_ACTIONS="true" idf.py build path: '.' diff --git a/doc/unit_testing.md b/doc/unit_testing.md index 95758df..6efc3d7 100644 --- a/doc/unit_testing.md +++ b/doc/unit_testing.md @@ -2,7 +2,7 @@ ESP-Miner includes unit tests that can run on the target (the esp32s3). Tests are located in the `test` subdirectory of a component (e.g. `components/stratum/test`). -For more information on unit testing with the esp32s3, see https://docs.espressif.com/projects/esp-idf/en/v5.3.1/esp32/api-guides/unit-tests.html. +For more information on unit testing with the esp32s3, see https://docs.espressif.com/projects/esp-idf/en/v5.3.2/esp32/api-guides/unit-tests.html. ### Building To built unit tests (examples provided on Ubuntu 24.04), from the ESP-Miner root directory: