Merge branch 'master' into develop

This commit is contained in:
hathach
2019-12-24 21:13:05 +07:00
29 changed files with 1452 additions and 98 deletions

View File

@@ -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)