Skip to content

Commit dfc3bf1

Browse files
committed
Merge pull request #1434 from petermm/test5.4
Test esp-idf v5.4-rc1 in sim_test Future proof logic around esp32p4/h2, so they are also expanded for a full_sim_test. These changes are made under both the "Apache 2.0" and the "GNU Lesser General Public License 2.1 or later" license terms (dual license). SPDX-License-Identifier: Apache-2.0 OR LGPL-2.1-or-later
2 parents 0e991df + bb2f067 commit dfc3bf1

File tree

1 file changed

+18
-5
lines changed

1 file changed

+18
-5
lines changed

.github/workflows/esp32-simtest.yaml

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,26 @@ jobs:
5959
fail-fast: false
6060
# focus on device diversity.
6161
matrix:
62-
esp-idf-target: ["esp32", "esp32s2", "esp32s3", "esp32c3", "esp32c6"]
63-
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"]') }}
64-
include:
62+
esp-idf-target:
63+
[
64+
"esp32",
65+
"esp32s2",
66+
"esp32s3",
67+
"esp32c3",
68+
"esp32c6",
69+
"esp32h2",
70+
"esp32p4",
71+
]
72+
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"]') }}
73+
exclude:
6574
- esp-idf-target: "esp32p4"
66-
idf-version: "v5.3.2"
75+
idf-version: "v5.1.5"
76+
- esp-idf-target: "esp32p4"
77+
idf-version: "v5.2.3"
78+
- esp-idf-target: "esp32h2"
79+
idf-version: "v5.1.5"
6780
- esp-idf-target: "esp32h2"
68-
idf-version: "v5.3.2"
81+
idf-version: "v5.2.3"
6982

7083
steps:
7184
- name: Checkout repo

0 commit comments

Comments
 (0)