Skip to content

Commit 22914d4

Browse files
committed
fix(wifi_remote): Fix build test to download only idf-build-apps deps
1 parent f05c765 commit 22914d4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/wifi_remote__build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ jobs:
2222
- name: Check that headers are the same as generated
2323
shell: bash
2424
run: |
25-
${IDF_PATH}/install.sh --enable-pytest
2625
. ${IDF_PATH}/export.sh
26+
pip install idf-component-manager idf-build-apps --upgrade
2727
cd ./components/esp_wifi_remote/scripts
2828
python generate_and_check.py
2929
@@ -46,8 +46,8 @@ jobs:
4646
- name: Build ${{ matrix.test.app }} with IDF-${{ matrix.idf_ver }}
4747
shell: bash
4848
run: |
49-
${IDF_PATH}/install.sh --enable-pytest
5049
. ${IDF_PATH}/export.sh
50+
pip install idf-component-manager idf-build-apps --upgrade
5151
python ./ci/build_apps.py ./components/esp_wifi_remote/${{matrix.test.path}} -vv --preserve-all
5252
5353
build_wifi_remote_example:
@@ -72,6 +72,6 @@ jobs:
7272
EXPECTED_WARNING: ${{ matrix.warning }}
7373
shell: bash
7474
run: |
75-
${IDF_PATH}/install.sh --enable-pytest
7675
. ${IDF_PATH}/export.sh
76+
pip install idf-component-manager idf-build-apps --upgrade
7777
python ./ci/build_apps.py ./components/esp_wifi_remote/${{matrix.example.path}} -vv --preserve-all

0 commit comments

Comments
 (0)