-
Notifications
You must be signed in to change notification settings - Fork 9
104 lines (98 loc) · 3.09 KB
/
build.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
name: Build
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
continue-on-error: true
strategy:
matrix:
test:
- path: 'components/adc/example'
target: esp32
- path: 'components/ads1x15/example'
target: esp32
- path: 'components/ads7138/example'
target: esp32s3
- path: 'components/as5600/example'
target: esp32s3
- path: 'components/aw9523/example'
target: esp32
- path: 'components/bldc_haptics/example'
target: esp32s3
- path: 'components/bldc_motor/example'
target: esp32s3
- path: 'components/button/example'
target: esp32
- path: 'components/controller/example'
target: esp32s3
- path: 'components/cli/example'
target: esp32
- path: 'components/color/example'
target: esp32
- path: 'components/csv/example'
target: esp32
- path: 'components/display_drivers/example'
target: esp32
- path: 'components/drv2605/example'
target: esp32
- path: 'components/encoder/example'
target: esp32
- path: 'components/event_manager/example'
target: esp32
- path: 'components/file_system/example'
target: esp32
- path: 'components/filters/example'
target: esp32
- path: 'components/ftp/example'
target: esp32
- path: 'components/joystick/example'
target: esp32
- path: 'components/led/example'
target: esp32
- path: 'components/led_strip/example'
target: esp32
- path: 'components/logger/example'
target: esp32
- path: 'components/math/example'
target: esp32
- path: 'components/monitor/example'
target: esp32
- path: 'components/mcp23x17/example'
target: esp32s3
- path: 'components/mt6701/example'
target: esp32s3
- path: 'components/pid/example'
target: esp32
- path: 'components/rmt/example'
target: esp32s3
- path: 'components/rtsp/example'
target: esp32
- path: 'components/serialization/example'
target: esp32
- path: 'components/socket/example'
target: esp32
- path: 'components/st25dv/example'
target: esp32s3
- path: 'components/state_machine/example'
target: esp32
- path: 'components/tabulate/example'
target: esp32
- path: 'components/task/example'
target: esp32
- path: 'components/thermistor/example'
target: esp32
- path: 'components/timer/example'
target: esp32
- path: 'components/wifi/example'
target: esp32
steps:
- name: Checkout repo
uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Build Examples
uses: espressif/esp-idf-ci-action@v1
with:
esp_idf_version: release-v5.0
target: ${{ matrix.test.target }}
path: ${{ matrix.test.path }}