2023-04-11 17:33:50 +03:00
|
|
|
name: Build Example Watchfaces
|
2021-12-19 23:22:48 +03:00
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
2023-04-11 17:33:50 +03:00
|
|
|
build:
|
|
|
|
name: Build Example Watchfaces
|
2021-12-19 23:22:48 +03:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-04-11 17:33:50 +03:00
|
|
|
- uses: actions/checkout@master
|
2021-12-19 23:22:48 +03:00
|
|
|
- uses: ArminJo/arduino-test-compile@v3
|
|
|
|
with:
|
2023-02-09 04:40:20 +03:00
|
|
|
arduino-board-fqbn: esp32:esp32:watchy:Revision=v20,PartitionScheme=min_spiffs,UploadSpeed=921600,DebugLevel=none,EraseFlash=none
|
2021-12-19 23:22:48 +03:00
|
|
|
platform-url: https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json
|
2023-02-09 04:34:25 +03:00
|
|
|
required-libraries: Adafruit GFX Library,Arduino_JSON,DS3232RTC,NTPClient,Rtc_Pcf8563,GxEPD2,WiFiManager
|
2023-04-11 17:33:50 +03:00
|
|
|
set-build-path: true
|
2023-02-09 09:08:57 +03:00
|
|
|
- uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: binaries
|
2023-04-11 23:19:06 +03:00
|
|
|
path: ${{ github.workspace }}/examples/WatchFaces/**/build/*.bin
|