Skip to content

Commit eab58de

Browse files
committed
ci(common): Fix build jobs to install only idf-build-apps in idf container
1 parent fcb6080 commit eab58de

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/console_cmd_ifconfig__build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ jobs:
3333
shell: bash
3434
working-directory: ${{matrix.test.path}}
3535
run: |
36-
${IDF_PATH}/install.sh --enable-pytest
3736
. ${IDF_PATH}/export.sh
37+
pip install idf-component-manager idf-build-apps --upgrade
3838
python ../../../ci/build_apps.py ./${{ matrix.test.app }} --target ${{ matrix.idf_target }} -vv --preserve-all --pytest-app

.github/workflows/console_cmd_ping__build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ jobs:
2727
shell: bash
2828
working-directory: ${{matrix.test.path}}
2929
run: |
30-
${IDF_PATH}/install.sh --enable-pytest
3130
. ${IDF_PATH}/export.sh
31+
pip install idf-component-manager idf-build-apps --upgrade
3232
python ../../../ci/build_apps.py ./${{ matrix.test.app }} --target ${{ matrix.idf_target }} -vv --preserve-all --pytest-app

.github/workflows/console_cmd_wifi__build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ jobs:
2727
shell: bash
2828
working-directory: ${{matrix.test.path}}
2929
run: |
30-
${IDF_PATH}/install.sh --enable-pytest
3130
. ${IDF_PATH}/export.sh
31+
pip install idf-component-manager idf-build-apps --upgrade
3232
python ../../../ci/build_apps.py ./${{ matrix.test.app }} --target ${{ matrix.idf_target }} -vv --preserve-all --pytest-app

.github/workflows/console_simple_init__build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ jobs:
2727
shell: bash
2828
working-directory: ${{matrix.test.path}}
2929
run: |
30-
${IDF_PATH}/install.sh --enable-pytest
3130
. ${IDF_PATH}/export.sh
31+
pip install idf-component-manager idf-build-apps --upgrade
3232
python ../../../ci/build_apps.py ./${{ matrix.test.app }} --target ${{ matrix.idf_target }} -vv --preserve-all --pytest-app

.github/workflows/mqtt_cxx__build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ jobs:
2727
shell: bash
2828
working-directory: ${{matrix.test.path}}
2929
run: |
30-
${IDF_PATH}/install.sh --enable-pytest
3130
. ${IDF_PATH}/export.sh
31+
pip install idf-component-manager idf-build-apps --upgrade
3232
python ../../../ci/build_apps.py ./${{ matrix.test.app }} --target ${{ matrix.idf_target }} -vv --preserve-all --pytest-app

.github/workflows/tls_cxx__build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ jobs:
2525
- name: Build ${{ matrix.test.app }} with IDF-${{ matrix.idf_ver }}
2626
shell: bash
2727
run: |
28-
${IDF_PATH}/install.sh --enable-pytest
2928
. ${IDF_PATH}/export.sh
29+
pip install idf-component-manager idf-build-apps --upgrade
3030
python ./ci/build_apps.py ./components/mbedtls_cxx/${{ matrix.test.path }} -vv --preserve-all

0 commit comments

Comments
 (0)