将项目版本更新至1.5.9,优化内存使用,增加主任务栈大小至8192,优化固件升级流程,重构主循环为MainEventLoop,添加新版本… #9
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: Build and Test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - name: Espressif IoT Development Framework (ESP-IDF) | |
| # You may pin to the exact commit or the version. | |
| # uses: espressif/esp-idf-ci-action@8cd22ae10042fadc37890e81e9988a9113e7b506 | |
| uses: espressif/[email protected] | |
| with: | |
| # Relative path under $GITHUB_WORKSPACE to place the repository | |
| #path: # optional, default is | |
| # Version of ESP-IDF docker image to use | |
| esp_idf_version: release-v5.4 | |
| # ESP32 variant to build for | |
| target: esp32s3 | |
| # Command to run inside the docker container (default: builds the project) | |
| # command: # optional, default is idf.py build | |