mirror of
https://github.com/scottbez1/smartknob.git
synced 2025-11-04 17:19:40 +08:00
- exposed strain SCK and DO - use 12 bit PWM (instead of 16 bit) for screen brightness on s3 - added option to use uart serial for s3 - bump nanopb/Nanopb @ 0.4.7 - fixed SPI bus alias and DMA channel for s3 --------- Co-authored-by: Scott Bezek <scottbez1@gmail.com>
70 lines
1.7 KiB
YAML
70 lines
1.7 KiB
YAML
name: PlatformIO CI
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- 'firmware/**'
|
|
- 'proto/**'
|
|
- 'thirdparty/nanopb/**'
|
|
- 'platformio.ini'
|
|
- '.github/workflows/pio.yml'
|
|
pull_request:
|
|
paths:
|
|
- 'firmware/**'
|
|
- 'proto/**'
|
|
- 'thirdparty/nanopb/**'
|
|
- 'platformio.ini'
|
|
- '.github/workflows/pio.yml'
|
|
|
|
jobs:
|
|
pio-build:
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Cache pip
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ~/.cache/pip
|
|
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-pip-
|
|
|
|
- name: Cache PlatformIO
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ~/.platformio
|
|
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v2
|
|
|
|
- name: Install PlatformIO
|
|
id: pio_install
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install --upgrade platformio
|
|
|
|
- name: Build Firmware (view)
|
|
# Run regardless of other build step failures, as long as setup steps completed
|
|
if: always() && steps.pio_install.outcome == 'success'
|
|
run: |
|
|
pio run \
|
|
-e view
|
|
|
|
- name: Build Firmware (nanofoc)
|
|
# Run regardless of other build step failures, as long as setup steps completed
|
|
if: always() && steps.pio_install.outcome == 'success'
|
|
run: |
|
|
pio run \
|
|
-e nanofoc
|
|
|
|
- name: Build Firmware (brushknight_esp32s3)
|
|
# Run regardless of other build step failures, as long as setup steps completed
|
|
if: always() && steps.pio_install.outcome == 'success'
|
|
run: |
|
|
pio run \
|
|
-e brushknight_esp32s3
|