-
Notifications
You must be signed in to change notification settings - Fork 178
154 lines (143 loc) · 5.24 KB
/
build_esp32.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
name: Build ESP32
on:
pull_request:
push:
repository_dispatch:
release:
types:
- created
jobs:
# ---------------------------------------
# Build ESP32SX family
# ---------------------------------------
ESP:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
board:
# ----------------------
# S2 Alphabetical order
# ----------------------
- 'adafruit_feather_esp32s2'
- 'adafruit_feather_esp32s2_reverse_tft'
- 'adafruit_feather_esp32s2_tft'
- 'adafruit_funhouse_esp32s2'
- 'adafruit_magtag_29gray'
- 'adafruit_metro_esp32s2'
- 'adafruit_mylittlehacker_esp32s2'
- 'adafruit_qtpy_esp32s2'
- 'artisense_rd00'
- 'atmegazero_esp32s2'
- 'bpi_bit_s2'
- 'bpi_leaf_s2'
- 'deneyap_mini'
- 'deneyap_mini_v2'
- 'department_of_alchemy_minimain_esp32s2'
- 'espressif_hmi_1'
- 'espressif_kaluga_1'
- 'espressif_saola_1_wroom'
- 'espressif_saola_1_wrover'
- 'gravitech_cucumberRIS_v1.1'
- 'hexky_s2'
- 'hiibot_iots2'
- 'lilygo_ttgo_t8_s2'
- 'lilygo_ttgo_t8_s2_st7789'
- 'lilygo_ttgo_t8_s2_wroom'
- 'lolin_s2_mini'
- 'lolin_s2_pico'
- 'maker_badge'
- 'microdev_micro_s2'
- 'morpheans_morphesp-240'
- 'muselab_nanoesp32-s2_wroom'
- 'muselab_nanoesp32-s2_wrover'
- 'olimex_esp32s2_devkit_lipo_vB1'
- 'sensebox_mcu_esp32s2'
- 'targett_mcb_wroom'
- 'targett_mcb_wrover'
- 'unexpectedmaker_feathers2'
- 'unexpectedmaker_feathers2_neo'
- 'unexpectedmaker_tinys2'
- 'waveshare_esp32_s2_pico_lcd'
- 'waveshare_esp32s2_pico'
# ----------------------
# S3 Alphabetical order
# ----------------------
- 'adafruit_camera_esp32s3'
- 'adafruit_feather_esp32s3'
- 'adafruit_feather_esp32s3_nopsram'
- 'adafruit_feather_esp32s3_reverse_tft'
- 'adafruit_feather_esp32s3_tft'
- 'adafruit_matrixportal_s3'
- 'adafruit_metro_esp32s3'
- 'adafruit_qualia_s3_rgb666'
- 'adafruit_qtpy_esp32s3'
- 'adafruit_qtpy_esp32s3_n4r2'
- 'bpi_leaf_s3'
- 'bpi_picow_s3'
- 'circuitart_zero_s3'
- 'cytron_maker_feather_aiot_s3'
- 'deneyap_kart_1a_v2'
- 'es3ink'
- 'espressif_esp32s3_box'
- 'espressif_esp32s3_devkitc_1'
- 'espressif_esp32s3_devkitm_1'
- 'espressif_esp32s3_eye'
- 'firebeetle2_esp32s3'
- 'heltec_wireless_tracker'
- 'lilygo_ttgo_t_twr_plus'
- 'lilygo_ttgo_tbeam_s3'
- 'lolin_s3'
- 'm5stack_atoms3'
- 'm5stack_atoms3_lite'
- 'm5stack_atoms3u'
- 'magiclick_s3_n4r2'
- 'seeed_xiao_esp32s3'
- 'smartbeedesigns_bee_motion_s3'
- 'smartbeedesigns_bee_s3'
- 'unexpectedmaker_feathers3'
- 'unexpectedmaker_nanos3'
- 'unexpectedmaker_pros3'
- 'unexpectedmaker_tinys3'
- 'waveshare_esp32_s3_pico'
- 'yd_esp32_s3_n16r8'
- 'yd_esp32_s3_n8r8'
steps:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Checkout submodules
run: git submodule update --init lib/tinyusb lib/uf2
- name: Set Env
run: echo BIN_PATH=ports/espressif/_bin/${{ matrix.board }} >> $GITHUB_ENV
- name: Build
run: docker run --rm -v $PWD:/project -w /project espressif/idf:v5.1.1 /bin/bash -c "git config --global --add safe.directory /project && make -C ports/espressif/ BOARD=${{ matrix.board }} all self-update copy-artifact"
- uses: actions/upload-artifact@v3
with:
name: ${{ matrix.board }}
path: ${{ env.BIN_PATH }}
- name: Prepare Release Asset
if: ${{ github.event_name == 'release' }}
run: |
zip -jr tinyuf2-${{ matrix.board }}-${{ github.event.release.tag_name }}.zip ${{ env.BIN_PATH }}
cp ${{ env.BIN_PATH }}/update-tinyuf2.uf2 update-tinyuf2-${{ matrix.board }}-${{ github.event.release.tag_name }}.uf2
- name: Upload Release Asset
uses: softprops/action-gh-release@v1
if: ${{ github.event_name == 'release' }}
with:
files: |
tinyuf2-${{ matrix.board }}-*.zip
update-tinyuf2-${{ matrix.board }}-*.uf2
- name: Upload Assets To AWS S3
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
if: ${{ github.event_name == 'release' }}
run: |
[ -z \"$AWS_ACCESS_KEY_ID\" ] || aws s3 cp tinyuf2-${{ matrix.board }}-${{ github.event.release.tag_name }}.zip s3://adafruit-circuit-python/bootloaders/esp32/tinyuf2-${{ matrix.board }}-${{ github.event.release.tag_name }}.zip --no-progress --region us-east-1
[ -z \"$AWS_ACCESS_KEY_ID\" ] || aws s3 cp update-tinyuf2-${{ matrix.board }}-${{ github.event.release.tag_name }}.uf2 s3://adafruit-circuit-python/bootloaders/esp32/update-tinyuf2-${{ matrix.board }}-${{ github.event.release.tag_name }}.uf2 --no-progress --region us-east-1