Skip to content

Commit

Permalink
fix(mdns): Workaround to bypass new kconfiglib
Browse files Browse the repository at this point in the history
  • Loading branch information
david-cermak committed Dec 4, 2024
1 parent 32387f7 commit 1b3b646
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/mdns__build-target-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Build
strategy:
matrix:
idf_ver: ["latest", "release-v5.0", "release-v5.2", "release-v5.3"]
idf_ver: ["latest", "release-v5.1", "release-v5.2", "release-v5.3", "release-v5.4"]
test: [ { app: example, path: "examples/query_advertise" }, { app: unit_test, path: "tests/unit_test" }, { app: test_app, path: "tests/test_apps" } ]
runs-on: ubuntu-22.04
container: espressif/idf:${{ matrix.idf_ver }}
Expand All @@ -23,7 +23,9 @@ jobs:
- name: Build ${{ matrix.test.app }} with IDF-${{ matrix.idf_ver }}
shell: bash
run: |
${IDF_PATH}/install.sh
. ${IDF_PATH}/export.sh
pip install esp-idf-kconfig==2.3.0
python -m pip install idf-build-apps
# Build default configs for all targets
python ./ci/build_apps.py components/mdns/${{ matrix.test.path }} -r default -d
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/mdns__host-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ jobs:
- name: Build and Test
shell: bash
run: |
${IDF_PATH}/install.sh
. ${IDF_PATH}/export.sh
pip install esp-idf-kconfig==2.3.0
python -m pip install idf-build-apps dnspython pytest pytest-embedded pytest-embedded-serial-esp pytest-embedded-idf
cd $GITHUB_WORKSPACE/protocols
# Build host tests app (with all configs and targets supported)
Expand Down

0 comments on commit 1b3b646

Please sign in to comment.