File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed
Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change 1+ name : arduino
2+ on : [ push, pull_request ]
3+
4+ jobs :
5+ build-for-esp32 :
6+ runs-on : ubuntu-latest
7+ strategy :
8+ matrix :
9+ fqbn :
10+ - esp32:esp32:esp32
11+ - esp32:esp32:esp32s3
12+ - esp32:esp32:esp32c3
13+ # future bluetooth chips
14+ # - esp32:esp32:esp32c2
15+ # - esp32:esp32:esp32c6
16+ # - esp32:esp32:esp32h2
17+
18+ steps :
19+ - uses : actions/checkout@v3
20+ - uses : arduino/compile-sketches@v1
21+ with :
22+ github-token : ${{ secrets.GITHUB_TOKEN }}
23+ fqbn : ${{ matrix.fqbn }}
24+ platforms : |
25+ - name: esp32:esp32
26+ source-url: https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json
27+ sketch-paths : |
28+ - bitcoinSwitch
29+ libraries : |
30+ - name: WebSockets
31+ - name: ArduinoJson
32+ cli-compile-flags : |
33+ - --warnings="none"
You can’t perform that action at this time.
0 commit comments