Test ESP-IDF Installation #68
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: Test ESP-IDF Installation | |
| on: | |
| push: | |
| branches: [v1] | |
| pull_request: | |
| branches: [v1] | |
| schedule: | |
| - cron: '20 4 * * 2' | |
| jobs: | |
| test: | |
| name: Test on ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install ESP-IDF | |
| uses: ./ | |
| - name: Verify Installation | |
| run: | | |
| echo "Verifying ESP-IDF installation..." | |
| echo "ESP-IDF Path: $IDF_PATH" | |
| echo "ESP-IDF Tools Path: $IDF_TOOLS_PATH" | |
| echo "ESP-IDF Python Environment Path: $IDF_PYTHON_ENV_PATH" | |
| echo "ESP-IDF Version:" | |
| idf.py --version | |
| fixed-version-test: | |
| name: Test on ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, macos-13, windows-latest] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install ESP-IDF | |
| uses: ./ | |
| with: | |
| eim-version: "v0.2.6" | |
| - name: Verify Installation | |
| run: | | |
| idf.py --version |