forked from Arduino-CI/arduino_ci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.yml
143 lines (137 loc) · 2.84 KB
/
default.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
# Note that ci_config_spec.rb has tests for this file's contents
# some of the defines were guessed from
# https://en.wikipedia.org/wiki/List_of_Arduino_boards_and_compatible_systems
packages:
# arduino:xxx are builtin, we don't need to include them here
# but if we did, it would be url: https://downloads.arduino.cc/packages/package_index.json
esp8266:esp8266:
url: http://arduino.esp8266.com/stable/package_esp8266com_index.json
adafruit:avr:
url: https://adafruit.github.io/arduino-board-index/package_adafruit_index.json
adafruit:samd:
url: https://adafruit.github.io/arduino-board-index/package_adafruit_index.json
esp32:esp32:
url: https://dl.espressif.com/dl/package_esp32_index.json
platforms:
uno:
board: arduino:avr:uno
package: arduino:avr
gcc:
features:
defines:
- __AVR_ATmega328P__
warnings:
flags:
due:
board: arduino:sam:arduino_due_x
package: arduino:sam
gcc:
features:
defines:
- __AVR_ATmega328__
warnings:
flags:
zero:
board: arduino:samd:arduino_zero_native
package: arduino:samd
gcc:
features:
defines:
- __SAMD21G18A__
- ARDUINO_SAMD_ZERO
warnings:
flags:
esp32:
board: esp32:esp32:featheresp32:FlashFreq=80
package: esp32:esp32
gcc:
features:
defines:
warnings:
flags:
esp8266:
board: esp8266:esp8266:huzzah:FlashSize=4M3M,CpuFrequency=80
package: esp8266:esp8266
gcc:
features:
defines:
warnings:
flags:
leonardo:
board: arduino:avr:leonardo
package: arduino:avr
gcc:
features:
defines:
- __AVR_ATmega32U4__
warnings:
flags:
trinket:
board: adafruit:avr:trinket5
package: adafruit:avr
gcc:
features:
defines:
warnings:
flags:
gemma:
board: arduino:avr:gemma
package: adafruit:avr
gcc:
features:
defines:
warnings:
flags:
m4:
board: adafruit:samd:adafruit_metro_m4
package: adafruit:samd
gcc:
features:
defines:
warnings:
flags:
mega2560:
board: arduino:avr:mega:cpu=atmega2560
package: arduino:avr
gcc:
features:
defines:
- __AVR_ATmega2560__
warnings:
flags:
cplayClassic:
board: arduino:avr:circuitplay32u4cat
package: arduino:avr
gcc:
features:
defines:
warnings:
flags:
cplayExpress:
board: arduino:samd:adafruit_circuitplayground_m0
package: arduino:samd
gcc:
features:
defines:
warnings:
flags:
compile:
libraries: ~
platforms:
- uno
- due
- zero
- leonardo
- m4
- esp32
- esp8266
- mega2560
unittest:
compilers:
- g++
libraries: ~
platforms:
- uno
- due
- zero
- leonardo