Skip to content

Commit 9ce6bb3

Browse files
committed
fix the name of variable and esp-idf manifest path
1 parent f0b7cfe commit 9ce6bb3

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/build_and_run_esp_usb_test_apps.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
container: espressif/idf:${{ matrix.idf_ver }}
2121
env:
22-
COMPOT_VER: "2.4.3"
22+
IDF_COMP_MAN_VER: "2.4.3"
2323
IDF_BUILD_APPS_VER: "2.13.1"
2424
ESP_USB_PATH: esp-usb
2525
ESP_USB_MANIFEST: esp-usb/.build-test-rules.yml
@@ -35,7 +35,7 @@ jobs:
3535
shell: bash
3636
run: |
3737
. ${IDF_PATH}/export.sh
38-
pip install --no-cache-dir idf-component-manager>=${{ env.COMPOT_VER}} idf-build-apps==${{ env.IDF_BUILD_APPS_VER }} pyyaml --upgrade
38+
pip install --no-cache-dir idf-component-manager>=${{ env.IDF_COMP_MAN_VER}} idf-build-apps==${{ env.IDF_BUILD_APPS_VER }} pyyaml --upgrade
3939
export PEDANTIC_FLAGS="-DIDF_CI_BUILD -Werror -Werror=deprecated-declarations -Werror=unused-variable -Werror=unused-but-set-variable -Werror=unused-function"
4040
export EXTRA_CFLAGS="${PEDANTIC_FLAGS} -Wstrict-prototypes"
4141
export EXTRA_CXXFLAGS="${PEDANTIC_FLAGS}"

.github/workflows/build_and_run_idf_examples.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ jobs:
1414
runs-on: ubuntu-latest
1515
container: espressif/idf:${{ matrix.idf_ver }}
1616
env:
17-
COMPOT_VER: "2.4.3"
17+
IDF_COMP_MAN_VER: "2.4.3"
1818
IDF_BUILD_APPS_VER: "2.13.1"
1919
steps:
2020
- uses: actions/checkout@v4
2121
- name: Install Python dependencies
2222
shell: bash
2323
run: |
2424
. ${IDF_PATH}/export.sh
25-
pip install --no-cache-dir idf-component-manager>=${{ env.COMPOT_VER }} idf-build-apps==${{ env.IDF_BUILD_APPS_VER }} pyyaml --upgrade
25+
pip install --no-cache-dir idf-component-manager>=${{ env.IDF_COMP_MAN_VER }} idf-build-apps==${{ env.IDF_BUILD_APPS_VER }} pyyaml --upgrade
2626
- name: Build Network USB related examples
2727
shell: bash
2828
run: |
@@ -38,7 +38,7 @@ jobs:
3838
run: |
3939
. ${IDF_PATH}/export.sh
4040
export EXAMPLES_PATH="${IDF_PATH}/examples/peripherals/usb/device"
41-
export MANIFEST_PATH="${IDF_PATH}/examples/peripherals/usb"
41+
export MANIFEST_PATH="${IDF_PATH}/examples/peripherals"
4242
export MANIFEST_FILE="${IDF_PATH}/examples/peripherals/.build-test-rules.yml"
4343
python .github/ci/override_managed_component.py tinyusb . ${EXAMPLES_PATH}/tusb_*
4444
idf-build-apps find --paths ${EXAMPLES_PATH}/ --recursive --target all --manifest-files ${MANIFEST_FILE} --manifest-rootpath ${MANIFEST_PATH}

.github/workflows/build_iot_examples.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
container: espressif/idf:${{ matrix.idf_ver }}
1616
env:
17-
COMPOT_VER: "2.4.3"
17+
IDF_COMP_MAN_VER: "2.4.3"
1818
IDF_BUILD_APPS_VER: "2.13.1"
1919
TARGET_PATH: esp-iot-solution
2020
TARGET_MANIFEST_PATH: esp-iot-solution/examples/.build-rules.yml
@@ -30,7 +30,7 @@ jobs:
3030
shell: bash
3131
run: |
3232
. ${IDF_PATH}/export.sh
33-
pip install --no-cache-dir idf-component-manager>=${{ env.COMPOT_VER }} idf-build-apps==${{ env.IDF_BUILD_APPS_VER }} pyyaml --upgrade
33+
pip install --no-cache-dir idf-component-manager>=${{ env.IDF_COMP_MAN_VER }} idf-build-apps==${{ env.IDF_BUILD_APPS_VER }} pyyaml --upgrade
3434
python .github/ci/override_managed_component.py tinyusb . ${{ env.TARGET_EXAMPLES_PATH }}/
3535
idf-build-apps find --paths ${{ env.TARGET_EXAMPLES_PATH }} --target all --manifest-file ${{ env.TARGET_MANIFEST_PATH }} --manifest-rootpath ${{ env.TARGET_PATH }}
3636
idf-build-apps build --paths ${{ env.TARGET_EXAMPLES_PATH }} --target all --manifest-file ${{ env.TARGET_MANIFEST_PATH }} --manifest-rootpath ${{ env.TARGET_PATH }}

0 commit comments

Comments
 (0)