We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd6b66d commit 5df4643Copy full SHA for 5df4643
.github/workflows/console_cmd_ifconfig__build.yml
@@ -13,9 +13,13 @@ jobs:
13
name: Build
14
strategy:
15
matrix:
16
- idf_ver: ["latest", "release-v5.0"]
+ idf_ver: ["latest", "release-v5.1", "release-v5.0"]
17
idf_target: ["esp32"]
18
test: [ { app: ifconfig-basic, path: "components/console_cmd_ifconfig/examples"}]
19
+ include:
20
+ - idf_ver: "latest"
21
+ warning: "the choice symbol ETHERNET_PHY_LAN867X"
22
+
23
runs-on: ubuntu-22.04
24
container: espressif/idf:${{ matrix.idf_ver }}
25
steps:
@@ -24,6 +28,8 @@ jobs:
28
with:
29
submodules: recursive
26
30
- name: Build ${{ matrix.test.app }} with IDF-${{ matrix.idf_ver }} for ${{ matrix.idf_target }}
31
+ env:
32
+ EXPECTED_WARNING: ${{ matrix.warning }}
27
33
shell: bash
34
working-directory: ${{matrix.test.path}}
35
run: |
0 commit comments