forked from espressif/esptool
-
Notifications
You must be signed in to change notification settings - Fork 0
224 lines (213 loc) · 9.77 KB
/
build_esptool.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
name: Build esptool
on: [push, pull_request]
jobs:
# build-esptool-binaries-arm:
# name: Build esptool binaries for ${{ matrix.platform }}
# runs-on: ${{ matrix.RUN_ON }}
# strategy:
# matrix:
# platform: [armv7, aarch64]
# container: python:3.8-bullseye
# env:
# SEPARATOR: ':'
# DISTPATH: esptool-${{ matrix.platform }}
# STUBS_DIR: ./esptool/targets/stub_flasher/
# EFUSE_DIR: ./espefuse/efuse_defs/
# PIP_EXTRA_INDEX_URL: "https://dl.espressif.com/pypi"
# steps:
# - uses: uraimo/run-on-arch-action@v2
# if: matrix.platform == 'armv7' && matrix.platform == 'aarch64'
# name: Build and test in ${{ matrix.platform }}
# with:
# arch: ${{ matrix.platform }}
# distro: ubuntu20.04
# run: |
# # Install dependencies
# pip install pyinstaller==5.13.2
# pip install --user -e .
# # Build with PyInstaller
# pyinstaller --distpath ./${{ env.DISTPATH }} -F --icon=ci/espressif.ico --add-data="${{ env.STUBS_DIR }}1/*.json${{ matrix.SEPARATOR }}${{ env.STUBS_DIR }}1/" --add-data="${{ env.STUBS_DIR }}2/*.json${{ matrix.SEPARATOR }}${{ env.STUBS_DIR }}2/" esptool.py
# pyinstaller --distpath ./${{ env.DISTPATH }} -F --icon=ci/espressif.ico --add-data="${{ env.EFUSE_DIR }}*.yaml${{ matrix.SEPARATOR }}${{ env.EFUSE_DIR }}" espefuse.py
# pyinstaller --distpath ./${{ env.DISTPATH }} -F --icon=ci/espressif.ico espsecure.py
# pyinstaller --distpath ./${{ env.DISTPATH }} -F --icon=ci/espressif.ico esp_rfc2217_server.py
# # Test binaries
# ./${{ env.DISTPATH }}/esptool${{ matrix.EXTEN }} -h
# ./${{ env.DISTPATH }}/espefuse${{ matrix.EXTEN }} -h
# ./${{ env.DISTPATH }}/espsecure${{ matrix.EXTEN }} -h
# ./${{ env.DISTPATH }}/esp_rfc2217_server${{ matrix.EXTEN }} -h
# # Add license and readme
# mv LICENSE README.md ./${{ env.DISTPATH }}
# - name: Archive artifact
# uses: actions/upload-artifact@master
# with:
# name: ${{ env.DISTPATH }}
# path: ${{ env.DISTPATH }}
build-esptool-binaries:
name: Build esptool binaries for ${{ matrix.platform }}
runs-on: ${{ matrix.RUN_ON }}
strategy:
matrix:
platform: [macos-amd64, macos-arm64, windows, linux-amd64, armv7, aarch64]
include:
- platform: macos-amd64
TARGET: macos-amd64
SEPARATOR: ':'
RUN_ON: macos-13 # Versions 13 and lower are Intel-based.
- platform: macos-arm64
TARGET: macos-arm64
SEPARATOR: ':'
RUN_ON: macos-latest # Versions 14 and higher are ARM-based.
- platform: windows
TARGET: win64
EXTEN: .exe
SEPARATOR: ';'
RUN_ON: windows-latest
- platform: linux-amd64
TARGET: linux-amd64
SEPARATOR: ':'
RUN_ON: ubuntu-20.04
- platform: armv7
TARGET: armv7
SEPARATOR: ':'
RUN_ON: ubuntu-latest
- platform: aarch64
TARGET: aarch64
SEPARATOR: ':'
RUN_ON: ubuntu-latest
env:
DISTPATH: esptool-${{ matrix.TARGET }}
STUBS_DIR: ./esptool/targets/stub_flasher/
EFUSE_DIR: ./espefuse/efuse_defs/
PIP_EXTRA_INDEX_URL: "https://dl.espressif.com/pypi"
steps:
- name: Checkout repository
uses: actions/checkout@master
- name: Set up Python 3.8
# Skip setting python on ARM because of missing compatibility: https://github.com/actions/setup-python/issues/108
if: matrix.platform != 'armv7' && matrix.platform != 'aarch64'
uses: actions/setup-python@master
with:
python-version: 3.8
- name: Install dependencies
# PyInstaller >=6.0 results in significantly more antivirus false positives
if: matrix.platform != 'armv7' && matrix.platform != 'aarch64'
run: |
python -m pip install --upgrade pip
pip install pyinstaller==5.13.2
pip install --user -e .
- name: Build with PyInstaller
if: matrix.platform != 'armv7' && matrix.platform != 'aarch64'
run: |
pyinstaller --distpath ./${{ env.DISTPATH }} -F --icon=ci/espressif.ico --add-data="${{ env.STUBS_DIR }}1/*.json${{ matrix.SEPARATOR }}${{ env.STUBS_DIR }}1/" --add-data="${{ env.STUBS_DIR }}2/*.json${{ matrix.SEPARATOR }}${{ env.STUBS_DIR }}2/" esptool.py
pyinstaller --distpath ./${{ env.DISTPATH }} -F --icon=ci/espressif.ico --add-data="${{ env.EFUSE_DIR }}*.yaml${{ matrix.SEPARATOR }}${{ env.EFUSE_DIR }}" espefuse.py
pyinstaller --distpath ./${{ env.DISTPATH }} -F --icon=ci/espressif.ico espsecure.py
pyinstaller --distpath ./${{ env.DISTPATH }} -F --icon=ci/espressif.ico esp_rfc2217_server.py
- name: Build and test in ${{ matrix.platform }}
uses: uraimo/run-on-arch-action@v2
if: matrix.platform == 'armv7' || matrix.platform == 'aarch64'
with:
arch: ${{ matrix.platform }}
distro: ubuntu20.04
shell: /bin/bash
install: |
apt-get update -y
apt-get install -y python3 python3-pip python3-setuptools
run: |
adduser --disabled-password --gecos "" builder
# chmod -R a+rwx /sources
su builder <<EOF
export PATH=\$PATH:/home/builder/.local/bin
# Install dependencies
pip3 install pyinstaller==5.13.2
pip3 install --user -e .
# Build with PyInstaller
pyinstaller --distpath ./${{ env.DISTPATH }} -F --icon=ci/espressif.ico --add-data="${{ env.STUBS_DIR }}1/*.json${{ matrix.SEPARATOR }}${{ env.STUBS_DIR }}1/" --add-data="${{ env.STUBS_DIR }}2/*.json${{ matrix.SEPARATOR }}${{ env.STUBS_DIR }}2/" esptool.py
pyinstaller --distpath ./${{ env.DISTPATH }} -F --icon=ci/espressif.ico --add-data="${{ env.EFUSE_DIR }}*.yaml${{ matrix.SEPARATOR }}${{ env.EFUSE_DIR }}" espefuse.py
pyinstaller --distpath ./${{ env.DISTPATH }} -F --icon=ci/espressif.ico espsecure.py
pyinstaller --distpath ./${{ env.DISTPATH }} -F --icon=ci/espressif.ico esp_rfc2217_server.py
# Test binaries
./${{ env.DISTPATH }}/esptool${{ matrix.EXTEN }} -h
./${{ env.DISTPATH }}/espefuse${{ matrix.EXTEN }} -h
./${{ env.DISTPATH }}/espsecure${{ matrix.EXTEN }} -h
./${{ env.DISTPATH }}/esp_rfc2217_server${{ matrix.EXTEN }} -h
# Add license and readme
mv LICENSE README.md ./${{ env.DISTPATH }}
# TODO collect artifacts
# - name: Sign binaries
# if: matrix.platform == 'windows' && github.event_name != 'pull_request'
# env:
# CERTIFICATE: ${{ secrets.CERTIFICATE }}
# CERTIFICATE_PASSWORD: ${{ secrets.CERTIFICATE_PASSWORD }}
# shell: pwsh
# run: |
# ./ci/Sign-File.ps1 -Path ./${{ env.DISTPATH }}/esptool.exe
# ./ci/Sign-File.ps1 -Path ./${{ env.DISTPATH }}/espefuse.exe
# ./ci/Sign-File.ps1 -Path ./${{ env.DISTPATH }}/espsecure.exe
# ./ci/Sign-File.ps1 -Path ./${{ env.DISTPATH }}/esp_rfc2217_server.exe
- name: Test binaries
if: matrix.platform != 'armv7' && matrix.platform != 'aarch64'
shell: bash
run: |
./${{ env.DISTPATH }}/esptool${{ matrix.EXTEN }} -h
./${{ env.DISTPATH }}/espefuse${{ matrix.EXTEN }} -h
./${{ env.DISTPATH }}/espsecure${{ matrix.EXTEN }} -h
./${{ env.DISTPATH }}/esp_rfc2217_server${{ matrix.EXTEN }} -h
- name: Add license and readme
shell: bash
run: mv LICENSE README.md ./${{ env.DISTPATH }}
- name: Archive artifact
uses: actions/upload-artifact@master
with:
name: ${{ env.DISTPATH }}
path: ${{ env.DISTPATH }}
create_release:
name: Create GitHub release
if: startsWith(github.ref, 'refs/tags/') && !(contains(github.ref_name, 'dev'))
needs: build-esptool-binaries
runs-on: ubuntu-latest
env:
PIP_EXTRA_INDEX_URL: "https://dl.espressif.com/pypi"
permissions:
contents: write
steps:
- name: Get version
id: get_version
run: echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT
shell: bash
- name: Checkout
uses: actions/checkout@master
with:
fetch-depth: 0
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --user -e ".[dev]"
- name: Generate changelog
run: |
cz changelog ${{ steps.get_version.outputs.VERSION }} --template ci/gh_changelog_template.md.j2 --file-name changelog_body.md
cat changelog_body.md
- name: Download built binaries
uses: actions/download-artifact@master
- name: Compress and rename binaries
run: |
for dir in esptool-*; do
if [[ "$dir" == esptool-win* ]]; then
zip -r "esptool-v${{ steps.get_version.outputs.VERSION }}-${dir#esptool-}.zip" "$dir"
else
chmod -R u=rwx,g=rx,o=rx "$dir"
tar -cvzf "esptool-v${{ steps.get_version.outputs.VERSION }}-${dir#esptool-}.tar.gz" "$dir"
fi
done
- name: Create release
id: create_release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
body_path: changelog_body.md
name: Version ${{ steps.get_version.outputs.VERSION }}
draft: true
prerelease: false
files: |
esptool-v${{ steps.get_version.outputs.VERSION }}-*.zip
esptool-v${{ steps.get_version.outputs.VERSION }}-*.tar.gz