aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/pio_arduino_build.yml
blob: 49447abe7f6a34369181a1fe9b92784504c898d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# 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 6.1.17 Arduino CI

on:
  push:
    branches: [ master, dev ]
    paths-ignore:
      - '**.md'
      - 'doc/**'
  pull_request:
    branches: [ master, dev ]
    paths-ignore:
      - '**.md'
      - 'doc/**'

jobs:
  build:

    runs-on: ubuntu-latest
    strategy:
      matrix:
        framework: ["Arduino", "IDF"]
        no_gfx: ["", -DNO_GFX]
#       no_fast_functions: ["", -DNO_FAST_FUNCTIONS]
#       no_cie1931: ["", -DNO_CIE1931]
#       virtual_panel: ["", -DVIRTUAL_PANE]
        example:
          - "examples/PIO_TestPatterns"
#        exclude:
#          - no_fast_functions: ""
#            virtual_panel: -DVIRTUAL_PANE

    steps:
    - name: Checkout
      uses: actions/checkout@v4
    - name: Cache pip and platformio
      uses: actions/cache@v4
      with:
        path: |
          ~/.cache/pip
          ~/.platformio/.cache
        key: ${{ runner.os }}-pio
    - name: Set up Python 3.x
      uses: actions/setup-python@v5
      with:
        python-version: '3.x'
    - name: Install Platformio
      run: pip install --upgrade platformio==6.1.17
    - name: Run PlatformIO CI (Arduino)
      if: ${{ matrix.framework == 'Arduino'}}
      env: 
        PLATFORMIO_BUILD_FLAGS: ${{ matrix.no_gfx }} ${{ matrix.no_fast_functions }} ${{ matrix.no_cie1931 }} ${{ matrix.virtual_panel }}
        PLATFORMIO_CI_SRC: ${{ matrix.example }}
      run: pio ci -e esp32 -c ${{ matrix.example }}/platformio.ini
    - name: Run PlatformIO CI (ESP-IDF)
      if: ${{ matrix.framework == 'IDF'}}
      env: 
        PLATFORMIO_BUILD_FLAGS: -DIDF_BUILD ${{ matrix.no_gfx }} ${{ matrix.no_fast_functions }} ${{ matrix.no_cie1931 }} ${{ matrix.virtual_panel }}
      # pio ci doesn't use our sdkconfig, so we have to use pio run
      #run: pio run -d ${{ matrix.example }} -e esp32idf -c ${{ matrix.example }}/platformio.ini
      run: pio run -d ${{ matrix.example }}