Skip to content

Commit

Permalink
fix: format and esp32 camera example compliation
Browse files Browse the repository at this point in the history
  • Loading branch information
kakopappa committed Jan 5, 2025
1 parent fc9e613 commit 577300f
Showing 1 changed file with 6 additions and 11 deletions.
17 changes: 6 additions & 11 deletions .github/workflows/build-esp8266-esp32.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,11 @@ on:
- examples/**

jobs:
build-esp8266:
build-esp8266-esp32:
runs-on: ubuntu-latest
strategy:
matrix:
# Base examples that work on both platforms
example: &base_examples
example:
- examples/ACUnit
- examples/Blinds
- examples/ContactSensor
Expand Down Expand Up @@ -70,21 +69,17 @@ jobs:
pio pkg install -l "bblanchon/ArduinoJson" -l "links2004/WebSockets" -g
- name: Run build test using PlatformIO
run: pio ci --lib="." -b esp12e
run: pio ci --lib="." -b esp12e -b esp32dev
env:
PLATFORMIO_CI_SRC: ${{ matrix.example }}

build-esp32:
build-camera-examples:
runs-on: ubuntu-latest
strategy:
matrix:
example:
# Include all base examples
- *base_examples
# ESP32-specific examples
- &esp32_examples
- examples/Camera/motion-capture
- examples/Camera/snapshot-camera
- examples/Camera/motion-capture
- examples/Camera/snapshot-camera
steps:
- name: Checkout Repo
uses: actions/checkout@v4
Expand Down

0 comments on commit 577300f

Please sign in to comment.