Skip to content

Commit

Permalink
Test esp-idf v5.4-rc1 in sim_test
Browse files Browse the repository at this point in the history
Future proof logic around esp32p4/h2, so they are expanded for a full_sim_test.

Signed-off-by: Peter M <petermm@gmail.com>
  • Loading branch information
petermm committed Dec 29, 2024
1 parent 0e991df commit bb2f067
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions .github/workflows/esp32-simtest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,26 @@ jobs:
fail-fast: false
# focus on device diversity.
matrix:
esp-idf-target: ["esp32", "esp32s2", "esp32s3", "esp32c3", "esp32c6"]
idf-version: ${{ ((contains(github.event.head_commit.message, 'full_sim_test')||contains(github.event.pull_request.title, 'full_sim_test')) && fromJSON('["v5.1.5", "v5.2.3", "v5.3.2", "v5.4-beta1"]')) || fromJSON('["v5.3.2"]') }}
include:
esp-idf-target:
[
"esp32",
"esp32s2",
"esp32s3",
"esp32c3",
"esp32c6",
"esp32h2",
"esp32p4",
]
idf-version: ${{ ((contains(github.event.head_commit.message, 'full_sim_test')||contains(github.event.pull_request.title, 'full_sim_test')) && fromJSON('["v5.1.5", "v5.2.3", "v5.3.2", "v5.4-rc1"]')) || fromJSON('["v5.3.2"]') }}
exclude:
- esp-idf-target: "esp32p4"
idf-version: "v5.3.2"
idf-version: "v5.1.5"
- esp-idf-target: "esp32p4"
idf-version: "v5.2.3"
- esp-idf-target: "esp32h2"
idf-version: "v5.1.5"
- esp-idf-target: "esp32h2"
idf-version: "v5.3.2"
idf-version: "v5.2.3"

steps:
- name: Checkout repo
Expand Down

0 comments on commit bb2f067

Please sign in to comment.