-
-
Notifications
You must be signed in to change notification settings - Fork 386
/
build-release.py
392 lines (320 loc) · 15 KB
/
build-release.py
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
#!/usr/bin/env python
# Build FluidNC release bundles (.zip files) for each host platform
from shutil import copy
from zipfile import ZipFile, ZipInfo
import subprocess, os, sys, shutil
import urllib.request
import io, hashlib
verbose = '-v' in sys.argv
environ = dict(os.environ)
def buildEmbeddedPage():
print('Building embedded web page')
return subprocess.run(["python", "build.py"], cwd="embedded").returncode
def buildEnv(pioEnv, verbose=True, extraArgs=None):
cmd = ['platformio','run', '--disable-auto-clean', '-e', pioEnv]
if extraArgs:
cmd.append(extraArgs)
displayName = pioEnv
print('Building firmware for ' + displayName)
if verbose:
app = subprocess.Popen(cmd, env=environ)
else:
app = subprocess.Popen(cmd, env=environ, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
for line in app.stdout:
line = line.decode('utf8')
if "Took" in line or 'Uploading' in line or ("error" in line.lower() and "Compiling" not in line):
print(line, end='')
app.wait()
print()
return app.returncode
def buildFs(pioEnv, verbose=verbose, extraArgs=None):
cmd = ['platformio','run', '--disable-auto-clean', '-e', pioEnv, '-t', 'buildfs']
if extraArgs:
cmd.append(extraArgs)
print('Building file system for ' + pioEnv)
if verbose:
app = subprocess.Popen(cmd, env=environ)
else:
app = subprocess.Popen(cmd, env=environ, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
for line in app.stdout:
line = line.decode('utf8')
if "Took" in line or 'Uploading' in line or ("error" in line.lower() and "Compiling" not in line):
print(line, end='')
app.wait()
print()
return app.returncode
tag = (
subprocess.check_output(["git", "describe", "--tags", "--abbrev=0"])
.strip()
.decode("utf-8")
)
sharedPath = 'install_scripts'
def copyToZip(zipObj, platform, fileName, destPath, mode=0o100755):
sourcePath = os.path.join(sharedPath, platform, fileName)
with open(sourcePath, 'r') as f:
bytes = f.read()
info = ZipInfo.from_file(sourcePath, os.path.join(destPath, fileName))
info.external_attr = mode << 16
zipObj.writestr(info, bytes)
relPath = os.path.join('release')
if not os.path.exists(relPath):
os.makedirs(relPath)
manifestRelPath = os.path.join(relPath, 'current')
if os.path.exists(manifestRelPath):
shutil.rmtree(manifestRelPath)
os.makedirs(manifestRelPath)
# Copy the web application to the release directory
dataRelPath = os.path.join(manifestRelPath, 'data')
os.makedirs(dataRelPath)
shutil.copy(os.path.join("FluidNC", "data", "index.html.gz"), dataRelPath)
manifest = {
"name": "FluidNC",
"version": tag,
"source_url": "https://github.com/bdring/FluidNC/tree/" + tag,
"release_url": "https://github.com/bdring/FluidNC/releases/tag/" + tag,
"funding_url": "https://www.paypal.com/donate/?hosted_button_id=8DYLB6ZYYDG7Y",
"images": {},
"files": {},
"upload": {
"name": "upload",
"description": "Things you can upload to the file system",
"choice-name": "Upload group",
"choices": []
},
"installable": {
"name": "installable",
"description": "Things you can install",
"choice-name": "Processor type",
"choices": []
},
}
# We avoid doing this every time, instead checking in a new NoFile.h as necessary
# if buildEmbeddedPage() != 0:
# sys.exit(1)
# if buildFs('wifi', verbose=verbose) != 0:
# sys.exit(1)
def addImage(name, offset, filename, srcpath, dstpath):
fulldstpath = os.path.join(manifestRelPath,os.path.normpath(dstpath))
os.makedirs(fulldstpath, exist_ok=True)
fulldstfile = os.path.join(fulldstpath, filename)
shutil.copy(os.path.join(srcpath, filename), fulldstfile)
print("image ", name)
with open(fulldstfile, "rb") as f:
data = f.read()
image = {
# "name": name,
"size": os.path.getsize(fulldstfile),
"offset": offset,
"path": dstpath + '/' + filename,
"signature": {
"algorithm": "SHA2-256",
"value": hashlib.sha256(data).hexdigest()
}
}
if manifest['images'].get(name) != None:
print("Duplicate image name", name)
sys.exit(1)
manifest['images'][name] = image
# manifest['images'].append(image)
def addFile(name, controllerpath, filename, srcpath, dstpath):
fulldstpath = os.path.join(manifestRelPath,os.path.normpath(dstpath))
os.makedirs(fulldstpath, exist_ok=True)
fulldstfile = os.path.join(fulldstpath, filename)
shutil.copy(os.path.join(srcpath, filename), fulldstfile)
print("file ", name)
with open(fulldstfile, "rb") as f:
data = f.read()
file = {
"size": os.path.getsize(fulldstfile),
"controller-path": controllerpath,
"path": dstpath + '/' + filename,
"signature": {
"algorithm": "SHA2-256",
"value": hashlib.sha256(data).hexdigest()
}
}
if manifest['files'].get(name) != None:
print("Duplicate file name", name)
sys.exit(1)
manifest['files'][name] = file
# manifest['images'].append(image)
flashsize = "4m"
mcu = "esp32"
for mcu in ['esp32']:
for envName in ['wifi','bt', 'noradio']:
if buildEnv(envName, verbose=verbose) != 0:
sys.exit(1)
buildDir = os.path.join('.pio', 'build', envName)
shutil.copy(os.path.join(buildDir, 'firmware.elf'), os.path.join(relPath, envName + '-' + 'firmware.elf'))
addImage(mcu + '-' + envName + '-firmware', '0x10000', 'firmware.bin', buildDir, mcu + '/' + envName)
if envName == 'wifi':
if buildFs('wifi', verbose=verbose) != 0:
sys.exit(1)
# bootapp is a data partition that the bootloader and OTA use to determine which
# image to run. Its initial value is in a file "boot_app0.bin" in the platformio
# framework package. We copy it to the build directory so addImage can find it
bootappsrc = os.path.join(os.path.expanduser('~'),'.platformio','packages','framework-arduinoespressif32','tools','partitions', 'boot_app0.bin')
shutil.copy(bootappsrc, buildDir)
addImage(mcu + '-' + envName + '-' + flashsize + '-filesystem', '0x3d0000', 'littlefs.bin', buildDir, mcu + '/' + envName + '/' + flashsize)
addImage(mcu + '-' + flashsize + '-partitions', '0x8000', 'partitions.bin', buildDir, mcu + '/' + flashsize)
addImage(mcu + '-bootloader', '0x1000', 'bootloader.bin', buildDir, mcu)
addImage(mcu + '-bootapp', '0xe000', 'boot_app0.bin', buildDir, mcu)
def addSection(node, name, description, choice):
section = {
"name": name,
"description": description,
}
if choice != None:
section['choice-name'] = choice
section['choices'] = []
node.append(section)
def addMCU(name, description, choice=None):
addSection(manifest['installable']['choices'], name, description, choice)
def addVariant(variant, description, choice=None):
node1 = manifest['installable']['choices']
node1len = len(node1)
addSection(node1[node1len-1]['choices'], variant, description, choice)
def addInstallable(install_type, erase, images):
for image in images:
if manifest['images'].get(image) == None:
# imagefiles = [obj for obj in manifest['images'] if obj['name'] == image]
# if len(imagefiles) == 0:
print("Missing image", image)
sys.exit(1)
# if len(imagefiles) > 1:
# print("Duplicate image", image)
# sys.exit(2)
node1 = manifest['installable']['choices']
node1len = len(node1)
node2 = node1[node1len-1]['choices']
node2len = len(node2)
installable = {
"name": install_type["name"],
"description": install_type["description"],
"erase": erase,
"images": images
}
node2[node2len-1]['choices'].append(installable)
def addUpload(name, description, files):
for file in files:
if manifest['files'].get(file) == None:
print("Missing file", file)
sys.exit(1)
upload = {
"name": name,
"description": description,
"files": files
}
manifest['upload']['choices'].append(upload)
fresh_install = { "name": "fresh-install", "description": "Complete FluidNC installation, erasing all previous data"}
firmware_update = { "name": "firmware-update", "description": "Update FluidNC to latest firmware version, preserving previous filesystem data."}
filesystem_update = { "name": "filesystem-update", "description": "Update FluidNC filesystem only, erasing previous filesystem data."}
def makeManifest():
addMCU("esp32", "ESP32-WROOM", "Firmware variant")
addVariant("wifi", "Supports WiFi and WebUI", "Installation type")
addInstallable(fresh_install, True, ["esp32-4m-partitions", "esp32-bootloader", "esp32-bootapp", "esp32-wifi-firmware", "esp32-wifi-4m-filesystem"])
addInstallable(firmware_update, False, ["esp32-wifi-firmware"])
addInstallable(filesystem_update, False, ["esp32-wifi-4m-filesystem"])
addVariant("bt", "Supports Bluetooth serial", "Installation type")
addInstallable(fresh_install, True, ["esp32-4m-partitions", "esp32-bootloader", "esp32-bootapp", "esp32-bt-firmware"])
addInstallable(firmware_update, False, ["esp32-bt-firmware"])
addVariant("noradio", "Supports neither WiFi nor Bluetooth", "Installation type")
addInstallable(fresh_install, True, ["esp32-4m-partitions", "esp32-bootloader", "esp32-bootapp", "esp32-noradio-firmware"])
addInstallable(firmware_update, False, ["esp32-noradio-firmware"])
addFile("WebUI-2", "/localfs/index.html.gz", "index.html.gz", os.path.join("FluidNC", "data"), "data")
# addFile("WebUI-3", "/localfs/index.html.gz", "3index.html.gz", os.path.join("FluidNC", "data"), "data")
addUpload("WebUI generation 2", "Add WebUI to local filesystem", ["WebUI-2"])
makeManifest()
import json
def printManifest():
print(json.dumps(manifest, indent=2))
with open(os.path.join(manifestRelPath, "manifest.json"), "w") as manifest_file:
json.dump(manifest, manifest_file, indent=2)
for platform in ['win64', 'posix']:
print("Creating zip file for ", platform)
terseOSName = {
'win64': 'win',
'posix': 'posix',
}
scriptExtension = {
'win64': '.bat',
'posix': '.sh',
}
exeExtension = {
'win64': '.exe',
'posix': '',
}
withEsptoolBinary = {
'win64': True,
'posix': False,
}
zipDirName = os.path.join('fluidnc-' + tag + '-' + platform)
zipFileName = os.path.join(relPath, zipDirName + '.zip')
with ZipFile(zipFileName, 'w') as zipObj:
name = 'HOWTO-INSTALL.txt'
zipObj.write(os.path.join(sharedPath, platform, name), os.path.join(zipDirName, name))
pioPath = os.path.join('.pio', 'build')
# Put boot_app binary in the archive
bootapp = 'boot_app0.bin';
tools = os.path.join(os.path.expanduser('~'),'.platformio','packages','framework-arduinoespressif32','tools')
zipObj.write(os.path.join(tools, "partitions", bootapp), os.path.join(zipDirName, 'common', bootapp))
for secFuses in ['SecurityFusesOK.bin', 'SecurityFusesOK0.bin']:
zipObj.write(os.path.join(sharedPath, 'common', secFuses), os.path.join(zipDirName, 'common', secFuses))
# Put FluidNC binaries, partition maps, and installers in the archive
for envName in ['wifi','bt']:
# Put bootloader binaries in the archive
bootloader = 'bootloader.bin'
zipObj.write(os.path.join(pioPath, envName, bootloader), os.path.join(zipDirName, envName, bootloader))
# Put littlefs.bin and index.html.gz in the archive
# bt does not need a littlefs.bin because there is no use for index.html.gz
if envName == 'wifi':
name = 'littlefs.bin'
zipObj.write(os.path.join(pioPath, envName, name), os.path.join(zipDirName, envName, name))
name = 'index.html.gz'
zipObj.write(os.path.join('FluidNC', 'data', name), os.path.join(zipDirName, envName, name))
objPath = os.path.join(pioPath, envName)
for obj in ['firmware.bin','partitions.bin']:
zipObj.write(os.path.join(objPath, obj), os.path.join(zipDirName, envName, obj))
# E.g. posix/install-wifi.sh -> install-wifi.sh
copyToZip(zipObj, platform, 'install-' + envName + scriptExtension[platform], zipDirName)
for script in ['install-fs', 'fluidterm', 'checksecurity', 'erase', 'tools']:
# E.g. posix/fluidterm.sh -> fluidterm.sh
copyToZip(zipObj, platform, script + scriptExtension[platform], zipDirName)
# Put the fluidterm code in the archive
for obj in ['fluidterm.py', 'README-FluidTerm.md']:
fn = os.path.join('fluidterm', obj)
zipObj.write(fn, os.path.join(zipDirName, os.path.join('common', obj)))
if platform == 'win64':
obj = 'fluidterm' + exeExtension[platform]
zipObj.write(os.path.join('fluidterm', obj), os.path.join(zipDirName, platform, obj))
EsptoolVersion = 'v3.1'
# Put esptool and related tools in the archive
if withEsptoolBinary[platform]:
name = 'README-ESPTOOL.txt'
EspRepo = 'https://github.com/espressif/esptool/releases/download/' + EsptoolVersion + '/'
EspDir = 'esptool-' + EsptoolVersion + '-' + platform
zipObj.write(os.path.join(sharedPath, platform, name), os.path.join(zipDirName, platform,
name.replace('.txt', '-' + EsptoolVersion + '.txt')))
else:
name = 'README-ESPTOOL-SOURCE.txt'
EspRepo = 'https://github.com/espressif/esptool/archive/refs/tags/'
EspDir = EsptoolVersion
zipObj.write(os.path.join(sharedPath, 'common', name), os.path.join(zipDirName, 'common',
name.replace('.txt', '-' + EsptoolVersion + '.txt')))
# Download and unzip from ESP repo
ZipFileName = EspDir + '.zip'
if not os.path.isfile(ZipFileName):
with urllib.request.urlopen(EspRepo + ZipFileName) as u:
open(ZipFileName, 'wb').write(u.read())
if withEsptoolBinary[platform]:
for Binary in ['esptool']:
Binary += exeExtension[platform]
sourceFileName = EspDir + '/' + Binary
with ZipFile(ZipFileName, 'r') as zipReader:
destFileName = os.path.join(zipDirName, platform, Binary)
info = ZipInfo(destFileName)
info.external_attr = 0o100755 << 16
zipObj.writestr(info, zipReader.read(sourceFileName))
else:
zipObj.write(os.path.join(ZipFileName), os.path.join(zipDirName, 'common', 'esptool-source.zip'))
sys.exit(0)