From 23974379ee03627ae1921a7fcbd0a524930f1149 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?El=C3=ADas=20Angulo?= Date: Mon, 22 Jul 2024 08:49:01 +0200 Subject: [PATCH] Create test.actions.yml --- .github/workflows/test.actions.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/test.actions.yml diff --git a/.github/workflows/test.actions.yml b/.github/workflows/test.actions.yml new file mode 100644 index 0000000..03611ef --- /dev/null +++ b/.github/workflows/test.actions.yml @@ -0,0 +1,28 @@ +name: Build Example Watchfaces +on: + push: + branches: + - "dev" + pull_request: + branches: + - "dev" +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:esp32-s3-devkitc-1: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 + arduino-platform: esp32:esp32@3.0.3 + 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 + - uses: actions/download-artifact@v3 + - name: Display structure of downloaded files + run: ls -R