diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index c65f6a163..7c0f8fd26 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 b46ea8dc4..686a7aaac 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 de0d9a407..4e82073ad 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 94a36fb88..580b7ed82 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 5b6f68d7c..da992bb77 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 e76f5fbd1..9f02d945b 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 95758dfa6..6efc3d7bf 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: