We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1339e9 commit 8966b20Copy full SHA for 8966b20
tools/build_all.py
@@ -38,6 +38,7 @@
38
os.makedirs(bin_directory, exist_ok=True)
39
40
start_time = time.monotonic()
41
+ subprocess.run("make -j BOARD={} clean".format(board), shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
42
make_result = subprocess.run("make -j BOARD={} all".format(board), shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
43
build_duration = time.monotonic() - start_time
44
0 commit comments