bsp(m5stack_tab5): New BSP for M5Stack Tab5 #1790
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Push noglib BSPs to Espressif Component Service | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| types: [opened, reopened, synchronize] | |
| jobs: | |
| upload_components: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Upload noglib version of BSPs | |
| # TODO: Extend this part to all BSPs | |
| env: | |
| BSPs: "bsp/esp_wrover_kit bsp/esp32_s3_eye bsp/esp32_p4_function_ev_board bsp/m5stack_core_s3 bsp/m5stack_core_2 bsp/m5stack_core bsp/m5dial bsp/m5_atom_s3 bsp/esp-box-3 bsp/esp32_s3_lcd_ev_board bsp/esp32_s3_korvo_2 bsp/esp32_p4_eye bsp/m5stack_tab5" | |
| run: | | |
| pip install idf-component-manager==2.* py-markdown-table --upgrade | |
| python .github/ci/bsp_noglib.py ${BSPs} | |
| - uses: espressif/upload-components-ci-action@v2 | |
| with: | |
| components: > | |
| bsp/esp32_s3_eye_noglib; | |
| bsp/esp32_p4_function_ev_board_noglib; | |
| bsp/m5stack_core_s3_noglib; | |
| bsp/m5stack_core_2_noglib; | |
| bsp/m5stack_core_noglib; | |
| bsp/m5dial_noglib; | |
| bsp/esp_wrover_kit_noglib; | |
| bsp/m5_atom_s3_noglib; | |
| bsp/esp-box-3_noglib; | |
| bsp/esp32_s3_lcd_ev_board_noglib; | |
| bsp/esp32_s3_korvo_2_noglib; | |
| bsp/esp32_p4_eye_noglib; | |
| bsp/m5stack_tab5_noglib; | |
| namespace: "espressif" | |
| api_token: ${{ secrets.IDF_COMPONENT_API_TOKEN }} | |
| dry_run: ${{ github.ref_name != 'master' || github.repository_owner != 'espressif' }} | |
| commit_sha: '' # Use empty string not to include commit SHA in the component version |