Skip to content

Commit

Permalink
Add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
user890104 committed Jan 10, 2025
1 parent 89512c0 commit 5905c6b
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/compile-board-firmware.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Compile Sketch

on:
- push
- pull_request

jobs:
compile-sketch:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

# For more information: https://github.com/arduino/compile-sketches#readme
- name: Compile sketch
uses: arduino/compile-sketches@v1
with:
platforms: |
- name: "esp32:esp32"
source-url: https://github.com/espressif/arduino-esp32.git
fqbn: "esp32:esp32:esp32da:PartitionScheme=min_spiffs"
sketch-paths: |
- ./board-firmware/
libraries: |
- source-url: https://github.com/freemyipod/arduino-audio-tools.git
version: add-scanning-callbacks
- source-url: https://github.com/freemyipod/ESP32-A2DP.git
version: add-scanning-callbacks
verbose: true

0 comments on commit 5905c6b

Please sign in to comment.