-
Notifications
You must be signed in to change notification settings - Fork 0
57 lines (47 loc) · 1.37 KB
/
build_ra4m1.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
47
48
49
50
51
52
53
54
55
56
57
name: RA4M1
on:
workflow_dispatch:
pull_request:
paths:
- 'src/**'
- '.github/workflows/build_ra4m1.yml'
push:
paths:
- 'src/**'
- '.github/workflows/build_ra4m1.yml'
jobs:
renesas_uno_minima:
name: ra4m1 ${{ matrix.sketches.name }}
runs-on: ubuntu-latest
strategy:
matrix:
sketches:
- name: serial
- name: ethernet
- name: wifi
board:
- fqbn: arduino:renesas_uno:minima
denko-target: ra4m1
platforms: |
- name: arduino:renesas_uno
libraries: |
- name: Servo
- name: Ethernet
- name: WiFi
- name: Adafruit NeoPixel
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
- name: Generate
id: generate
run: echo "path=$(./bin/denko sketch ${{ matrix.sketches.name }} --target ${{ matrix.board.denko-target }})" >> $GITHUB_OUTPUT
- name: Compile Arduino Sketches
uses: arduino/[email protected]
with:
platforms: ${{ matrix.board.platforms }}
fqbn: ${{ matrix.board.fqbn }}
libraries: ${{ matrix.board.libraries }}
sketch-paths: |
- ${{ steps.generate.outputs.path }}