ESP32-HUB75-MatrixPanel-DMA/.github/workflows/pio_build.yml

50 lines
1.4 KiB
YAML
Raw Normal View History

# Build examples with Platformio
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
# https://docs.platformio.org/en/latest/integration/ci/github-actions.html
name: PlatformIO CI
on:
push:
branches: [ master, dev ]
pull_request:
branches: [ master, dev ]
jobs:
build:
runs-on: ubuntu-latest
2023-01-30 03:36:36 +01:00
continue-on-error: true
strategy:
matrix:
example:
- "examples/PIO_TestPatterns"
2023-01-30 03:25:59 +01:00
no_gfx: ["", -DNO_GFX]
2023-01-30 03:33:37 +01:00
no_fast_functions: ["", -DNO_FAST_FUNCTIONS]
2023-01-30 03:25:59 +01:00
no_cie1931: ["", -DNO_CIE1931]
2023-01-30 03:33:37 +01:00
virtual_panel: ["", -DVIRTUAL_PANE]
2023-01-30 03:49:18 +01:00
exclude:
- no_fast_functions: ""
virtual_panel: -DVIRTUAL_PANE
steps:
2023-01-30 03:52:35 +01:00
- name: Checkout
uses: actions/checkout@v3
- name: Cache pip and platformio
uses: actions/cache@v3
with:
2023-01-30 03:52:35 +01:00
path: |
~/.cache/pip
~/.platformio/.cache
key: ${{ runner.os }}-pio
- name: Set up Python 3.x
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install Platformio
2023-01-30 03:52:35 +01:00
run: pip install --upgrade platformio
- name: Run PlatformIO
env:
2023-01-30 03:44:02 +01:00
PLATFORMIO_BUILD_FLAGS: ${{ matrix.no_gfx }} ${{ matrix.no_fast_functions }} ${{ matrix.no_cie1931 }} ${{ matrix.virtual_panel }}
PLATFORMIO_CI_SRC: ${{ matrix.example }}
2023-01-30 03:52:35 +01:00
run: pio ci -c ${{ matrix.example }}/platformio.ini