-
-
Notifications
You must be signed in to change notification settings - Fork 26
405 lines (373 loc) · 12.7 KB
/
main.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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
---
name: Build and Push OR check-PR
on:
pull_request:
branches:
- main
push:
branches:
- main
- dev
tags:
- "*"
workflow_dispatch:
jobs:
compile_sketch:
name: Build ${{ matrix.board.name }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
board:
- {
vendor: "M5Stack",
name: "Cardputer",
description: "",
link: "https://shop.m5stack.com/products/m5stack-cardputer-kit-w-m5stamps3?ref=Pirata",
family: "ESP32-S3",
env: "m5stack-cardputer",
partitions: {
bootloader_addr: "0x0000",
},
}
- {
vendor: "M5Stack",
name: "StickCPlus2",
description: "",
link: "https://shop.m5stack.com/products/m5stickc-plus2-esp32-mini-iot-development-kit?ref=Pirata",
family: "ESP32",
env: "m5stack-cplus2",
partitions: {
bootloader_addr: "0x1000",
},
}
- {
vendor: "M5Stack",
name: "StickCPlus",
description: "",
link: "https://shop.m5stack.com/products/m5stickc-plus-esp32-pico-mini-iot-development-kit?ref=Pirata",
family: "ESP32",
env: "m5stack-cplus1_1",
partitions: {
bootloader_addr: "0x1000",
},
}
- {
vendor: "M5Stack",
name: "StickC",
description: "",
link: "https://shop.m5stack.com/collections/m5-controllers?ref=Pirata",
family: "ESP32",
env: "m5stack-c",
partitions: {
bootloader_addr: "0x1000",
},
}
- {
vendor: "M5Stack",
name: "Core2",
description: "",
link: "https://shop.m5stack.com/products/m5stack-core2-esp32-iot-development-kit?ref=Pirata",
family: "ESP32",
env: "m5stack-core2",
partitions: {
bootloader_addr: "0x1000",
},
}
- {
vendor: "M5Stack",
name: "Core16mb",
description: "",
link: "https://shop.m5stack.com/products/esp32-basic-core-lot-development-kit-v2-7?ref=Pirata",
family: "ESP32",
env: "m5stack-core",
partitions: {
bootloader_addr: "0x1000",
},
}
- {
vendor: "M5Stack",
name: "CoreS3",
description: "",
link: "https://shop.m5stack.com/products/m5stack-cores3-esp32s3-lotdevelopment-kit?ref=Pirata",
family: "ESP32-S3",
env: "m5stack-cores3",
partitions: {
bootloader_addr: "0x0",
},
}
- {
vendor: "Espressif",
name: "ESP32-S3-4mb",
description: "",
link: "",
family: "ESP32-S3",
env: "headless-esp32s3-4mb",
partitions: {
bootloader_addr: "0x0",
},
}
- {
vendor: "Espressif",
name: "ESP32-S3-8mb",
description: "",
link: "",
family: "ESP32-S3",
env: "headless-esp32s3-8mb",
partitions: {
bootloader_addr: "0x0",
},
}
- {
vendor: "Espressif",
name: "ESP32-S3-16mb",
description: "",
link: "",
family: "ESP32-S3",
env: "headless-esp32s3-16mb",
partitions: {
bootloader_addr: "0x0",
},
}
- {
vendor: "Espressif",
name: "ESP32-4mb",
description: "",
link: "",
family: "ESP32",
env: "headless-esp32-4mb",
partitions: {
bootloader_addr: "0x1000",
},
}
- {
vendor: "Espressif",
name: "ESP32-8mb",
description: "",
link: "",
family: "ESP32",
env: "headless-esp32-8mb",
partitions: {
bootloader_addr: "0x1000",
},
}
- {
vendor: "CYD",
name: "CYD-2432S028",
description: "",
link: "",
family: "ESP32",
env: "CYD-2432S028",
partitions: {
bootloader_addr: "0x1000",
},
}
- {
vendor: "CYD",
name: "CYD-2USB",
description: "",
link: "",
family: "ESP32",
env: "CYD-2-USB",
partitions: {
bootloader_addr: "0x1000",
},
}
- {
vendor: "Marauder",
name: "V4-OG",
description: "",
link: "",
family: "ESP32",
env: "Marauder-v4-OG",
partitions: {
bootloader_addr: "0x1000",
},
}
- {
vendor: "Marauder",
name: "Mini",
description: "",
link: "",
family: "ESP32",
env: "Marauder-Mini",
partitions: {
bootloader_addr: "0x1000",
},
}
- {
vendor: "Lilygo",
name: "T-Display_S3_Touch",
description: "",
link: "",
family: "ESP32-S3",
env: "lilygo-t-display-S3",
partitions: {
bootloader_addr: "0x0",
},
}
- {
vendor: "Lilygo",
name: "T-Embed",
description: "",
link: "",
family: "ESP32-S3",
env: "lilygo-t-embed",
partitions: {
bootloader_addr: "0x0",
},
}
- {
vendor: "Lilygo",
name: "T-Embed_CC1101",
description: "",
link: "",
family: "ESP32-S3",
env: "lilygo-t-embed-cc1101",
partitions: {
bootloader_addr: "0x0",
},
}
- {
vendor: "Lilygo",
name: "T-Deck",
description: "",
link: "",
family: "ESP32-S3",
env: "lilygo-t-deck",
partitions: {
bootloader_addr: "0x0",
},
}
steps:
- uses: actions/checkout@v4
- id: build
name: setup Python
uses: actions/setup-python@v2
with:
python-version: "3.x"
- name: Install dependencies
run: |
pip install requests esptool
- name: Install PlatformIO Core
run: |
pip install platformio
if [[ "${{ github.ref_type }}" == "tag" ]]; then
version=${{ github.ref_name }}
else
version="${GITHUB_SHA::7}"
fi
sed -i "s/-DLAUNCHER=/-DLAUNCHER='\"$version\"' ; /g" ./platformio.ini
- name: Run Compile
run: |
platformio run -e ${{ matrix.board.env }}
- name: Merge files
run: |
esptool.py --chip esp32s3 merge_bin -o Launcher-${{ matrix.board.env }}.bin \
${{ matrix.board.partitions.bootloader_addr }} .pio/build/${{ matrix.board.env }}/bootloader.bin \
0x8000 .pio/build/${{ matrix.board.env }}/partitions.bin \
0x10000 .pio/build/${{ matrix.board.env }}/firmware.bin
js_content="{\"name\":\"${{ matrix.board.name }}\",\"builds\":[{\"chipFamily\":\"${{ matrix.board.family }}\",\"improv\":false,\"parts\":[{\"path\":\"bins/Launcher-${{ matrix.board.env }}.bin\",\"offset\":0}]}]}"
echo "$js_content" > "./Manifest-${{ matrix.board.name }}.json"
html="<li><label><input type='radio' name='type' value='${{ matrix.board.name }}' />${{ matrix.board.vendor }} - <a href='${{ matrix.board.link }}'>${{ matrix.board.name }}</a> ${{ matrix.board.description }}</label></li>"
echo "$html" > ./board.html
- name: Upload ${{ matrix.board.name }}
uses: actions/upload-artifact@v4
with:
name: Launcher-${{ matrix.board.env }}
path: Launcher-*.bin
retention-days: 5
if-no-files-found: error
- name: Upload Manifest
uses: actions/upload-artifact@v4
with:
name: Manifest-${{ matrix.board.name }}
path: Manifest-*.json
retention-days: 5
if-no-files-found: error
- name: Upload Html
uses: actions/upload-artifact@v4
with:
name: html-${{ matrix.board.name }}
path: board.html
retention-days: 5
if-no-files-found: error
post_compile_steps:
name: Post-compile steps
runs-on: ubuntu-latest
needs: compile_sketch
if: github.ref_type == 'tag'
steps:
- uses: actions/checkout@v4
with:
# Configura para garantir que todas as branches sejam buscadas
fetch-depth: 0
- name: Download all artifacts
uses: actions/download-artifact@v4
with:
path: ~/LauncherArtifacts
- name: Clone Launcher repository and switch to WebPage branch
run: |
git fetch origin
git checkout WebPage || git checkout -b WebPage origin/WebPage
- name: Generate HTML and manifests from Boards
run: |
html="<ul class='radios'>"
# Itera sobre cada arquivo HTML na pasta de artefatos e adiciona seu conteúdo à variável HTML
for file in ~/LauncherArtifacts/**/*.html; do
if [ -f "$file" ]; then
content=$(cat "$file")
html+="$content"
fi
done
html+="</ul>"
echo $html > ~/file.html
cat ~/file.html
rm ./index.html
cp ./support_files/flasher ./index.html
python ./support_files/merge_html.py ./index.html ~/file.html
- name: Move artifacts to the correct folders
run: |
set -x
pwd
ls -all
tree
mv -f ~/LauncherArtifacts/*/*.bin ./Release/bins
mv -f ~/LauncherArtifacts/*/*.json ./Release
- name: Commit and push changes
run: |
git config user.name "GitHub Actions"
git config user.email "[email protected]"
git add .
git commit -m "Update artifacts from build"
git push origin WebPage
create_release:
runs-on: ubuntu-latest
environment: github_release
needs: [compile_sketch]
if: github.ref_type == 'tag'
steps:
- id: launcher_version
name: Get Version
run: |
set -x
version=${{ github.ref_name }}
echo "version=${version}" > $GITHUB_OUTPUT
- uses: actions/download-artifact@v4
with:
merge-multiple: true
- name: List all files
if: always()
run: |
set -x
pwd
ls -all
tree
- name: Create Release ${{ steps.launcher_version.outputs.version }}
uses: softprops/action-gh-release@v1
with:
name: Launcher Release ${{ steps.launcher_version.outputs.version }}
tag_name: ${{ steps.launcher_version.outputs.version }}
generate_release_notes: true
files: |
Launcher-*.bin