mirror of
https://github.com/sqfmi/Watchy.git
synced 2024-11-27 03:13:26 +03:00
19 lines
777 B
YAML
19 lines
777 B
YAML
name: Build Example Watchfaces
|
|
on: [push, pull_request]
|
|
jobs:
|
|
build:
|
|
name: Build Example Watchfaces
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- uses: ArminJo/arduino-test-compile@v3
|
|
with:
|
|
arduino-board-fqbn: esp32:esp32:watchy:Revision=v20,PartitionScheme=min_spiffs,UploadSpeed=921600,DebugLevel=none,EraseFlash=none
|
|
platform-url: https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json
|
|
required-libraries: Adafruit GFX Library,Arduino_JSON,DS3232RTC,NTPClient,Rtc_Pcf8563,GxEPD2,WiFiManager
|
|
set-build-path: true
|
|
- uses: actions/upload-artifact@v3
|
|
with:
|
|
name: binaries
|
|
path: ${{ github.workspace }}/examples/WatchFaces/**/build/*.bin
|