PlatformIOCI #53
This file contains 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: PlatformIOCI | |
on: | |
workflow_dispatch: # This keeps the option to trigger manually | |
inputs: | |
PLATFORMIO_PROJECT_DIR: | |
description: 'Specify the PlatformIO project directory' | |
required: true | |
default: 'mcu_main_sustainer' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
actions: write | |
checks: write | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
- name: Install PlatformIO | |
run: | | |
python -m pip install --upgrade pip | |
pip install --upgrade platformio | |
- name: Run PlatformIO | |
run: | | |
cd MIDAS | |
pio platform install teensy | |
pio run -e ${{ github.event.inputs.PLATFORMIO_PROJECT_DIR }} || true | |
- name: Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: firmware-files | |
path: MIDAS/.pio/build/mcu_main_sustainer/ |