-
Notifications
You must be signed in to change notification settings - Fork 179
42 lines (40 loc) · 1.15 KB
/
arduino-cli.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Arduino CLI CI
on:
schedule:
- cron: '0 0 * * 5'
push:
branches: [ "main" ]
paths-ignore:
- '**.md'
pull_request:
branches: [ "main" ]
paths-ignore:
- '**.md'
release:
types: [ published, created, edited ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
platform_version: [ "latest", "2.0.17" ]
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v4
- uses: arduino/compile-sketches@v1
with:
fqbn: esp32:esp32:esp32
platforms: |
- name: "esp32:esp32"
version: ${{ matrix.platform_version }}
libraries: |
- name: TFT_eSPI
- name: XPT2046_Touchscreen
- name: XPT2046_Bitbang_Slim
- source-url: https://github.com/schreibfaul1/ESP32-audioI2S.git
sketch-paths: |
- "Examples/Basics"