-
-
Notifications
You must be signed in to change notification settings - Fork 152
277 lines (257 loc) · 7.88 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
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
name: Build
on: [push, pull_request]
jobs:
build_esp_pio:
strategy:
fail-fast: false
matrix:
example:
- "examples/NimBLE_Client"
- "examples/NimBLE_Server"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install platformio
run: |
python -m pip install --upgrade pip
pip install platformio
- name: Build esp PIO
run: |
mkdir -p example/lib
rsync -Rr . example/lib/
mkdir example/src
cat > example/platformio.ini << EOF
[env]
platform = espressif32
framework = arduino
[env:esp32dev]
board = esp32dev
[env:esp32c3]
board = esp32-c3-devkitm-1
[env:esp32s3]
board = esp32-s3-devkitc-1
EOF
cp ${{ matrix.example }}/* example/src/
platformio run -d example
build_bt5_esp_pio:
strategy:
fail-fast: false
matrix:
example:
- "examples/Bluetooth_5/NimBLE_extended_client"
- "examples/Bluetooth_5/NimBLE_extended_server"
variant:
- esp32c3
- esp32s3
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install platformio
run: |
python -m pip install --upgrade pip
pip install platformio
- name: Build esp PIO
run: |
mkdir -p example/lib
rsync -Rr . example/lib/
mkdir example/src
cat > example/platformio.ini << EOF
[env]
platform = espressif32
framework = arduino
[env:esp32c3]
board = esp32-c3-devkitm-1
build_flags = '-DCONFIG_BT_NIMBLE_EXT_ADV=1'
[env:esp32s3]
board = esp32-s3-devkitc-1
build_flags = '-DCONFIG_BT_NIMBLE_EXT_ADV=1'
EOF
cp ${{ matrix.example }}/* example/src/
platformio run -d example
build_arduino-esp32:
strategy:
fail-fast: false
matrix:
example:
- "examples/NimBLE_Client"
- "examples/NimBLE_Server"
variant:
- esp32
- esp32c3
- esp32s3
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build arduino-esp32
uses: arduino/[email protected]
with:
cli-version: latest
platforms: |
- name: "esp32:esp32"
source-url: "https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json"
version: latest
fqbn: "esp32:esp32:${{ matrix.variant }}"
sketch-paths: ${{ matrix.example }}
build_bt5_arduino-esp32:
strategy:
fail-fast: false
matrix:
example:
- "examples/Bluetooth_5/NimBLE_extended_client"
- "examples/Bluetooth_5/NimBLE_extended_server"
variant:
- esp32c3
- esp32s3
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set config for BT5
run: |
sed -i '0,/#include \"nimconfig_rename.h\"/a #define CONFIG_BT_NIMBLE_EXT_ADV 1' ./src/nimconfig.h
- name: Build BT5 arduino-esp32
uses: arduino/[email protected]
with:
cli-version: latest
platforms: |
- name: "esp32:esp32"
source-url: "https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json"
version: latest
fqbn: "esp32:esp32:${{ matrix.variant }}"
sketch-paths: ${{ matrix.example }}
build_n-able-Arduino:
strategy:
fail-fast: false
matrix:
example:
- "examples/NimBLE_Client"
- "examples/NimBLE_Server"
variant:
- Generic_nRF51822:chip=xxaa
- Generic_nRF52832
- Generic_nRF52833
- Generic_nRF52840
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build n-able Arduino
uses: arduino/[email protected]
with:
cli-version: latest
platforms: |
- name: "h2zero:arm-ble"
source-url: "https://h2zero.github.io/n-able-Arduino/package_n-able_boards_index.json"
version: latest
fqbn: "h2zero:arm-ble:${{ matrix.variant }}"
sketch-paths: ${{ matrix.example }}
build_bt5_n-able-Arduino:
strategy:
fail-fast: false
matrix:
example:
- "examples/Bluetooth_5/NimBLE_extended_client"
- "examples/Bluetooth_5/NimBLE_extended_server"
variant:
- Generic_nRF52840
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set config for BT5
run: |
echo "-DCONFIG_BT_NIMBLE_EXT_ADV=1" > ${{ matrix.example }}/build_opt.h
- name: Build BT5 n-able Arduino
uses: arduino/[email protected]
with:
cli-version: latest
platforms: |
- name: "h2zero:arm-ble"
source-url: "https://h2zero.github.io/n-able-Arduino/package_n-able_boards_index.json"
version: latest
fqbn: "h2zero:arm-ble:${{ matrix.variant }}"
sketch-paths: ${{ matrix.example }}
build_n-able-pio:
strategy:
fail-fast: false
matrix:
example:
- "examples/NimBLE_Client"
- "examples/NimBLE_Server"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install platformio
run: |
python -m pip install --upgrade pip
pip install platformio
- name: Build esp PIO
run: |
mkdir -p example/lib
rsync -Rr . example/lib/
mkdir example/src
cat > example/platformio.ini << EOF
[env]
platform = https://github.com/h2zero/platform-n-able.git#1.0.0
framework = arduino
[env:generic_nrf51822_xxaa
board = generic_nrf51822_xxaa
[env:generic_nrf52832]
board = generic_nrf52832
[env:generic_nrf52833]
board = generic_nrf52833
[env:generic_nrf52840]
board = generic_nrf52840
EOF
cp ${{ matrix.example }}/* example/src/
platformio run -d example
build_bt5_n-able-pio:
strategy:
fail-fast: false
matrix:
example:
- "examples/Bluetooth_5/NimBLE_extended_client"
- "examples/Bluetooth_5/NimBLE_extended_server"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install platformio
run: |
python -m pip install --upgrade pip
pip install platformio
- name: Build esp PIO
run: |
mkdir -p example/lib
rsync -Rr . example/lib/
mkdir example/src
cat > example/platformio.ini << EOF
[env]
platform = https://github.com/h2zero/platform-n-able.git#1.0.0
framework = arduino
[env:generic_nrf52840]
board = generic_nrf52840
build_flags = '-DCONFIG_BT_NIMBLE_EXT_ADV=1'
EOF
cp ${{ matrix.example }}/* example/src/
platformio run -d example
build_docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Doxygen Action
uses: mattnotmitt/[email protected]
with:
working-directory: 'docs/'