-
Notifications
You must be signed in to change notification settings - Fork 71
46 lines (39 loc) · 956 Bytes
/
build-sketches.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
43
44
45
46
on:
push:
pull_request:
schedule:
- cron: '0 2 * * *' # run at 2 AM UTC
defaults:
run:
working-directory: .github/workflows/tests
jobs:
build-sketches:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
include:
- board: mega128
- board: 168p
- board: 328p
- board: 644p
- board: 1284pBOB
- board: 1284pSTD
- board: bluepill
- board: maplemini
- board: esp32
- board: rp2040
- board: efm32
steps:
# GIT Checkout
- uses: actions/checkout@v2
- name: Setup Arduino CLI
uses: arduino/setup-arduino-cli@v1.1.1
with:
version: "0.17.0"
- name: Install Libs and Cores
run: ./install-deps.sh
- name: Download sketches
run: ./download-sketches.sh
- name: Compile Sketches
run: ./test.sh ${{ matrix.board }}