-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(wifi_remote): Add IDF compatible build test with wifi-remote
- Loading branch information
1 parent
b0f8e88
commit 6e0e095
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -77,3 +77,35 @@ jobs: | |
. ${IDF_PATH}/export.sh | ||
pip install idf-component-manager idf-build-apps --upgrade | ||
python ./ci/build_apps.py ./components/esp_wifi_remote/${{matrix.example.path}} -vv --preserve-all | ||
build_idf_examples_with_wifi_remote: | ||
if: contains(github.event.pull_request.labels.*.name, 'wifi_remote') || github.event_name == 'push' | ||
name: Build IDF examples with WiFi Remote | ||
strategy: | ||
matrix: | ||
idf_ver: ["latest", "release-v5.3"] | ||
test: [ { app: idf_mqtt_example, path: "examples/protocols/mqtt/tcp" }] | ||
runs-on: ubuntu-20.04 | ||
container: espressif/idf:${{ matrix.idf_ver }} | ||
steps: | ||
- name: Checkout esp-protocols | ||
uses: actions/checkout@v3 | ||
- name: ccache | ||
uses: hendrikmuhs/[email protected] | ||
with: | ||
key: ${{ matrix.idf_ver }} | ||
- name: Build ${{ matrix.test.app }} with IDF-${{ matrix.idf_ver }} | ||
shell: bash | ||
run: | | ||
. ${IDF_PATH}/export.sh | ||
pip install idf-component-manager idf-build-apps --upgrade | ||
export OVERRIDE_PATH=`pwd`/components/esp_wifi_remote | ||
echo ${OVERRIDE_PATH} | ||
sed -i '/espressif\/esp_wifi_remote:/a \ \ \ \ override_path: "${OVERRIDE_PATH}"' ${IDF_PATH}/${{matrix.test.path}}/main/idf_component.yml | ||
cat ${IDF_PATH}/${{matrix.test.path}}/main/idf_component.yml | ||
export PEDANTIC_FLAGS="-DIDF_CI_BUILD -Werror -Werror=deprecated-declarations -Werror=unused-variable -Werror=unused-but-set-variable -Werror=unused-function" | ||
export EXTRA_CFLAGS="${PEDANTIC_FLAGS} -Wstrict-prototypes" | ||
export EXTRA_CXXFLAGS="${PEDANTIC_FLAGS}" | ||
cd ${IDF_PATH}/${{matrix.test.path}} | ||
idf-build-apps find --target esp32p4 | ||
idf-build-apps build --target esp32p4 |