Skip to content

Commit 3f12ef6

Browse files
authored
Merge pull request #580 from david-cermak/fix/ci_build_jobs
ci(common): Fix build jobs to install only idf-build-apps in idf cotainer
2 parents f1bc070 + ce27c13 commit 3f12ef6

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/console_cmd_ifconfig__build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
test: [ { app: ifconfig-basic, path: "components/console_cmd_ifconfig/examples"}]
1919
include:
2020
- idf_ver: "latest"
21-
warning: "the choice symbol ETHERNET_PHY_LAN867X"
21+
warning: "the choice symbol ETHERNET_PHY_LAN867X\nis deprecated: Please use smi_gpio instead"
2222

2323
runs-on: ubuntu-22.04
2424
container: espressif/idf:${{ matrix.idf_ver }}
@@ -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)