Merge pull request #1137 from david-cermak/fix/mdns_browse_sync_end_race #3183
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "eppp_link: build-tests" | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| types: [opened, synchronize, reopened, labeled] | |
| jobs: | |
| build_eppp: | |
| if: contains(github.event.pull_request.labels.*.name, 'eppp') || github.event_name == 'push' | |
| name: Build | |
| strategy: | |
| matrix: | |
| idf_ver: ["latest", "release-v6.0", "release-v5.5", "release-v5.4", "release-v5.3"] | |
| test: [ { app: host, path: "examples/host" }, { app: slave, path: "examples/slave" }, { app: test_app, path: "test/test_app" }] | |
| runs-on: ubuntu-22.04 | |
| container: espressif/idf:${{ matrix.idf_ver }} | |
| steps: | |
| - name: Checkout esp-protocols | |
| uses: actions/checkout@v3 | |
| - name: Build ${{ matrix.test.app }} with IDF-${{ matrix.idf_ver }} | |
| env: | |
| EXPECTED_WARNING: "DeprecationWarning: 'MultiCommand' is deprecated and will be removed\nCryptographyDeprecationWarning: Parsed a serial number which wasn't positive" | |
| shell: bash | |
| run: | | |
| . ${IDF_PATH}/export.sh | |
| python -m pip install idf-build-apps | |
| python ./ci/build_apps.py ./components/eppp_link/${{matrix.test.path}} -vv --preserve-all |