Skip to content

Commit 5b3f4f3

Browse files
committed
Update ESP32 workflows to currently supported ESP-IDF versions
Removes the EOL ESP-IDF v4.x test and bumps verrsion 5.3 from the release candidate to the official v5.3 release. Signed-off-by: Winford <winford@object.stream>
1 parent 229ad99 commit 5b3f4f3

File tree

2 files changed

+9
-12
lines changed

2 files changed

+9
-12
lines changed

.github/workflows/esp32-build.yaml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,17 +38,14 @@ jobs:
3838
matrix:
3939
esp-idf-target: ["esp32", "esp32c3"]
4040
idf-version:
41-
- 'v4.4.7'
42-
- 'v5.0.6'
41+
- 'v5.0.7'
4342
- 'v5.1.4'
4443
- 'v5.2.2'
45-
- 'v5.3-rc1'
44+
- 'v5.3.1'
4645

4746
exclude:
4847
- esp-idf-target: "esp32c3"
49-
idf-version: 'v4.4.7'
50-
- esp-idf-target: "esp32c3"
51-
idf-version: 'v5.0.6'
48+
idf-version: 'v5.0.7'
5249
- esp-idf-target: "esp32c3"
5350
idf-version: 'v5.1.4'
5451
steps:

.github/workflows/esp32-mkimage.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,26 +32,26 @@ concurrency:
3232

3333
jobs:
3434
esp32-release:
35-
runs-on: ubuntu-latest
35+
runs-on: ubuntu-22.04
3636
container: espressif/idf:v${{ matrix.idf-version }}
3737

3838
strategy:
3939
matrix:
40-
idf-version: ["5.1.4"]
41-
cc: ["clang-10"]
42-
cxx: ["clang++-10"]
40+
idf-version: ["5.3.1"]
41+
cc: ["clang-14"]
42+
cxx: ["clang++-14"]
4343
cflags: ["-O3"]
4444
otp: ["27"]
4545
elixir_version: ["1.17"]
46-
compiler_pkgs: ["clang-10"]
46+
compiler_pkgs: ["clang-14"]
4747
soc: ["esp32", "esp32c2", "esp32c3", "esp32s2", "esp32s3", "esp32c6", "esp32h2"]
4848

4949
env:
5050
CC: ${{ matrix.cc }}
5151
CXX: ${{ matrix.cxx }}
5252
CFLAGS: ${{ matrix.cflags }}
5353
CXXFLAGS: ${{ matrix.cflags }}
54-
ImageOS: "ubuntu20"
54+
ImageOS: "ubuntu22"
5555

5656
steps:
5757
- name: Checkout repo

0 commit comments

Comments
 (0)