45 lines
944 B
YAML
45 lines
944 B
YAML
name: PlatformIO CI
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
paths:
|
|
- "esp32/**"
|
|
- "platformio.ini"
|
|
pull_request:
|
|
branches: [master]
|
|
paths:
|
|
- "esp32/**"
|
|
- "platformio.ini"
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: 'recursive'
|
|
- uses: actions/cache@v3
|
|
with:
|
|
path: |
|
|
~/.cache/pip
|
|
~/.platformio/.cache
|
|
key: ${{ runner.os }}-pio
|
|
|
|
- uses: actions/setup-python@v4
|
|
with:
|
|
python-version: "3.x"
|
|
- run: pip install -r esp32/scripts/requirements.txt
|
|
- name: Install PlatformIO Core
|
|
run: pip install --upgrade platformio
|
|
|
|
- name: Build PlatformIO Project
|
|
run: pio run
|
|
|
|
- name: Upload Artifacts
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: build-artifacts
|
|
path: esp32/build/firmware
|