Skip to content

Commit

Permalink
ci again, reduce make -j to 4
Browse files Browse the repository at this point in the history
  • Loading branch information
hathach committed Sep 4, 2020
1 parent 8966b20 commit 73d5190
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tools/build_all.py
Expand Up @@ -38,8 +38,7 @@
os.makedirs(bin_directory, exist_ok=True)

start_time = time.monotonic()
subprocess.run("make -j BOARD={} clean".format(board), shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
make_result = subprocess.run("make -j BOARD={} all".format(board), shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
make_result = subprocess.run("make -j 4 BOARD={} all".format(board), shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
build_duration = time.monotonic() - start_time

flash_size = "-"
Expand Down

0 comments on commit 73d5190

Please sign in to comment.