Files
firmware_remote_control/.github/workflows/esp32_build.yml

32 lines
653 B
YAML

name: Remote Control Build
on:
push:
pull_request:
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
- name: Install PlatformIO
run: |
python -m pip install --upgrade pip
pip install -U platformio
platformio update
- name: Build bare metal
run: platformio run
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
name: dist-firmware
path: |
.pio/build/**/*.bin