Skip to content

Commit 73d5190

Browse files
committed
ci again, reduce make -j to 4
1 parent 8966b20 commit 73d5190

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tools/build_all.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,7 @@
3838
os.makedirs(bin_directory, exist_ok=True)
3939

4040
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)
41+
make_result = subprocess.run("make -j 4 BOARD={} all".format(board), shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
4342
build_duration = time.monotonic() - start_time
4443

4544
flash_size = "-"

0 commit comments

Comments
 (0)