summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorhathach <[email protected]>2019-12-24 21:13:05 +0700
committerhathach <[email protected]>2019-12-24 21:13:05 +0700
commit2caa1ac07804bef581cd30e6fc5057a6515fb094 (patch)
treee25eb313d1c0b5219c7f24fe4fded4178969ed2f /tools
parenta1c94067f778dc6f055c132ca18c870a107910be (diff)
parent21cc8237e1130c489bc4ef3b7dea1c41eef25d56 (diff)
Merge branch 'master' into develop
Diffstat (limited to 'tools')
-rw-r--r--tools/build_all.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/build_all.py b/tools/build_all.py
index 9f35aac63..2ea898f45 100644
--- a/tools/build_all.py
+++ b/tools/build_all.py
@@ -36,7 +36,7 @@ for entry in os.scandir("hw/bsp"):
def build_example(example, board):
subprocess.run("make -C examples/device/{} BOARD={} clean".format(example, board), shell=True,
stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
- return subprocess.run("make -j 8 -C examples/device/{} BOARD={} all".format(example, board), shell=True,
+ return subprocess.run("make -j 4 -C examples/device/{} BOARD={} all".format(example, board), shell=True,
stdout=subprocess.PIPE, stderr=subprocess.STDOUT)