Skip to content

Commit

Permalink
Merge pull request #368 from espressif/fix/ci-with-idf-component-manager
Browse files Browse the repository at this point in the history
fix(ci): Use fixed version of idf-component-manager
  • Loading branch information
tore-espressif authored Aug 13, 2024
2 parents bf20d6c + f650aa4 commit c801e60
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/ci/bsp_noglib.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
DEFINE_NOGLIB_OFF = '#define BSP_CONFIG_NO_GRAPHIC_LIB (0)'
DEFINE_NOGLIB_ON = '#define BSP_CONFIG_NO_GRAPHIC_LIB (1)'
ESP_REGISTRY_URL = 'https://components.espressif.com/components/'
README_NOGLIB_NOTICE = '> :warning: This is **No Graphical version** of {} BSP. If you want to use this BSP with LVGL use [{}]({}) component.\n'
README_NOGLIB_NOTICE = '> :warning: This is **No Graphical Library version** of {} BSP. If you want to use this BSP with LVGL use [{}]({}) component.\n'


def select_bsp_config_no_graphic_lib(bsp_path):
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-examples-gh-pages-on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ jobs:
shell: bash
run: |
. ${IDF_PATH}/export.sh
pip install idf-component-manager --upgrade
pip install idf-component-manager==1.* --upgrade
- name: Action for building binaries and config.toml
uses: espressif/[email protected]
with:
with:
idf_version: ${{ matrix.idf_ver }}

- name: Upload Artifact
Expand All @@ -40,7 +40,7 @@ jobs:
needs: build

permissions:
pages: write
pages: write
id-token: write

environment:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
run: |
export IDF_EXTRA_ACTIONS_PATH=${GITHUB_WORKSPACE}/examples
. ${IDF_PATH}/export.sh
pip install idf-component-manager ruamel.yaml idf-build-apps --upgrade
pip install idf-component-manager==1.* ruamel.yaml idf-build-apps --upgrade
echo idf-build-apps extra arguments: ${{ env.extra_arguments }}
idf-build-apps find ${{ env.extra_arguments }}
idf-build-apps build --parallel-count ${{ matrix.parallel_count }} --parallel-index ${{ matrix.parallel_index }} ${{ env.extra_arguments }}
2 changes: 1 addition & 1 deletion .github/workflows/upload_component_noglib.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
env:
BSPs: "bsp/esp32_s3_eye bsp/esp32_p4_function_ev_board bsp/m5stack_core_s3 bsp/m5dial"
run: |
pip install idf-component-manager py-markdown-table --upgrade
pip install idf-component-manager==1.* py-markdown-table --upgrade
python .github/ci/bsp_noglib.py ${BSPs}
- uses: espressif/upload-components-ci-action@v1
with:
Expand Down

0 comments on commit c801e60

Please sign in to comment.