Skip to content

modifying extra script #18

modifying extra script

modifying extra script #18

Workflow file for this run

name: PlatformIO CI
on:
push:
branches:
- action # Replace 'main' with your branch if different
workflow_dispatch: # This keeps the option to trigger manually
jobs:
build:
runs-on: ubuntu-latest
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 mcu_main_booster || true
pio run -e mcu_main_sustainer || true
pio run -e mcu_hilsim_sustainer || true
pio run -e mcu_hilsim_booster || true
pio run -e mcu_silsim_sustainer || true
pio run -e mcu_silsim_booster || true
- name: Artifacts
uses: actions/upload-artifact@v4
with:
name: firmware-files
path: |
MIDAS/.pio/build/**/*firmware*
MIDAS/.pio/build/**/*bootloader*