Skip to content

Commit

Permalink
ci: remove now unsupported IDF versions
Browse files Browse the repository at this point in the history
Drop all < 4.4
  • Loading branch information
mdvorak committed Mar 31, 2024
1 parent 93ee791 commit 83520f6
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
push:
branches: [ "main" ]
tags: [ "v*" ]
paths-ignore: [ "*.md" ]
pull_request:
branches: [ "main" ]

Expand All @@ -21,20 +20,10 @@ jobs:
fail-fast: false
matrix:
# ESP-IDF versions and targets
idf_ver: [ v4.1, v4.2, v4.3, v4.4, v5.0 ]
idf_ver: [ v4.4, v5.0, v5.1, v5.2 ]
idf_target: [ esp32, esp32s2, esp32s3, esp32c3, esp32h2 ]
# Filter out unsupported combinations
exclude:
- { idf_target: esp32s2, idf_ver: v4.1 }
- { idf_target: esp32c3, idf_ver: v4.1 }
- { idf_target: esp32c3, idf_ver: v4.2 }
- { idf_target: esp32c3, idf_ver: v4.3 }
- { idf_target: esp32s3, idf_ver: v4.1 }
- { idf_target: esp32s3, idf_ver: v4.2 }
- { idf_target: esp32s3, idf_ver: v4.3 }
- { idf_target: esp32h2, idf_ver: v4.1 }
- { idf_target: esp32h2, idf_ver: v4.2 }
- { idf_target: esp32h2, idf_ver: v4.3 }
- { idf_target: esp32h2, idf_ver: v4.4 }
container: espressif/idf:release-${{ matrix.idf_ver }}
steps:
Expand Down

0 comments on commit 83520f6

Please sign in to comment.