Files
firmware_remote_control/.github/workflows/esp32_build.yml
T
mars3142 f7385757ee
Remote Control Build / build (ubuntu-latest) (pull_request) Failing after 5m25s
Remote Control Build / build (macos-latest) (pull_request) Has been cancelled
Update actions/checkout action to v6
2026-04-19 02:52:37 +00:00

32 lines
671 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@v6
- uses: actions/setup-python@v3
- 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 ${{ matrix.os }}
path: |
.pio/build/**/*.bin