Merge pull request #963 from Paciente8159/revert-pendsv-isr-rp2040 #2121
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: PlatformIO CI Tests | |
| on: | |
| push: | |
| jobs: | |
| build: | |
| name: Build & Test Firmware | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| boards: | |
| - LPC176X-RE-ARM | |
| - ESP8266-Wemos-D1-R2 | |
| - AVR-UNO | |
| - ESP32-MKS-TINYBEE | |
| - STM32F0-Bluepill-F030C8 | |
| - STM32F1-Bluepill-F103C8 | |
| - AVR-RAMBO | |
| - RP2040-PICO-W | |
| - SAMD21-Wemos-M0 | |
| - STM32F4-Blackpill-F401CC | |
| - STM32H7-Generic-STM32H750 | |
| - AVR-MEGA2560-RAMPS-V1_4 | |
| - RP2350-PICO2 | |
| - ESP32-S3 | |
| - ESP32-C3 | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Cache pip | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.cache/pip | |
| key: pip-${{ runner.os }}-${{ hashFiles('**/requirements.txt') }} | |
| restore-keys: pip-${{ runner.os }}- | |
| - name: Cache PlatformIO | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.platformio | |
| key: pio-${{ runner.os }}-${{ hashFiles('**/lockfiles') }} | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Install PlatformIO | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install --upgrade platformio | |
| - name: Run PlatformIO Build | |
| run: pio run -e ${{ matrix.boards }} |