-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathrelease.py
61 lines (42 loc) · 1.46 KB
/
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
#!/usr/bin/env python3
import sys
import os
import hashlib
import json
from os import path
if len(sys.argv) < 4:
print("ERROR: no version specified or project")
print("For example: ./release.sh <project> <package> <version>")
exit()
project = sys.argv[1]
package = sys.argv[2]
version = sys.argv[3]
tag = f"{project}-{package}-{version}"
platform_file = f"{project}/{package}-platform.json"
template_file = f"{project}/{package}/platform_template.json"
zip_file = f"{project}-{package}-arduino-core-{version}.zip"
# Update version number in platform.txt
os.system(f"sed -i -e 's/X.X.X/{version}/g' {project}/{package}/platform.txt")
# ZIP it
os.system(f"cd {project} && zip -r '../{zip_file}' '{package}/' -q")
zip_size = os.path.getsize(zip_file)
zip_hash = ""
with open(zip_file, "rb") as f:
bytes = f.read()
zip_hash = hashlib.sha256(bytes).hexdigest()
link = f"https://github.com/spacehuhntech/arduino/releases/download/{tag}/{zip_file}"
platform_json = []
if path.exists(platform_file):
with open(platform_file) as f:
platform_json = json.load(f)
template_json = {}
with open(template_file) as f:
template_json = json.load(f)
template_json["version"] = version
template_json["url"] = link
template_json["archiveFileName"] = zip_file
template_json["checksum"] = f"SHA-256:{zip_hash}"
template_json["size"] = zip_size
platform_json.append(template_json)
with open(platform_file, "w") as f:
f.write(json.dumps(platform_json, indent=4))