# 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 continue-on-error: true strategy: matrix: example: - "examples/PIO_TestPatterns" no_gfx: ["", -DNO_GFX] no_fast_functions: ["", -DNO_FAST_FUNCTIONS] no_cie1931: ["", -DNO_CIE1931] virtual_panel: ["", -DVIRTUAL_PANE] exclude: - no_fast_functions: "" virtual_panel: -DVIRTUAL_PANE steps: - name: Checkout uses: actions/checkout@v3 - name: Cache pip and platformio uses: actions/cache@v3 with: 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 run: pip install --upgrade platformio - name: Run PlatformIO 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 run: pio ci -v -e esp32idf -c ${{ matrix.example }}/platformio.ini # run: pio run -d ${{ matrix.example }} -e esp32idf -c ${{ matrix.example }}/platformio.ini