-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
make_release.py
executable file
·74 lines (58 loc) · 2.47 KB
/
make_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
#!/usr/bin/python3
# Copyright 2023 mjbots Robotic Systems, LLC. [email protected]
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import argparse
import datetime
import subprocess
import sys
def run(cmd):
print('>{}'.format(cmd))
subprocess.check_call(cmd, shell=True)
def main():
parser = argparse.ArgumentParser()
parser.add_argument('--force', action='store_true')
parser.add_argument('outdir')
args = parser.parse_args()
outdir = args.outdir
# Make sure git is clean first.
dirty = (subprocess.run("git diff-index --quiet HEAD --",
shell=True).returncode != 0)
if dirty and not args.force:
raise RuntimeError("git is dirty, cannot release!")
git_hash = subprocess.check_output(
"git rev-parse HEAD", shell=True).decode('utf8').strip()
datestr = datetime.datetime.now().strftime('%Y%m%d')
print("Details:")
print(" Date:", datestr)
print(" Output Directory:", outdir)
print(" Git Hash:", git_hash)
print("Building...")
print()
run('tools/bazel clean --expunge')
run('tools/bazel build --cpu stm32g4 -c opt //:target')
run(f'cp bazel-bin/fw/pi3_hat.elf {outdir}/{datestr}-pi3hat-{git_hash}.elf')
for pyver in ['3.7', '3.9', '3.10', '3.11', '3.12']:
for arch in ['pi', 'pi64']:
pyarch = {
'pi' : 'armv7l',
'pi64' : 'aarch64',
}[arch]
run(f'tools/bazel build --verbose_failures --config={arch} --define PYTHON={pyver} -c opt //:pi3hat_tools')
run(f'cp bazel-bin/pi3hat_tools.tar.bz2 {outdir}/{datestr}-pi3hat_tools-cp{pyver.replace(".","")}-{pyarch}-{git_hash}.tar.bz2')
wheel_name = subprocess.check_output("tar --list -f bazel-bin/pi3hat_tools.tar.bz2 | grep \.whl$", shell=True).decode('utf8').strip()
run(f'tar -C {outdir} --strip-components 1 --extract -f bazel-bin/pi3hat_tools.tar.bz2 {wheel_name}')
print()
print('DONE')
if __name__ == '__main__':
main()