Skip to content

Commit 4c54ea6

Browse files
author
Bogdan Marinescu
committed
Added parallel build option to build_travis.py
Mostly to test Mihail's parallel build changes
1 parent 2cf5f34 commit 4c54ea6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

workspace_tools/build_travis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def run_builds(dry_run):
5959
toolchain_list = build["toolchains"]
6060
if type(toolchain_list) != type([]): toolchain_list = [toolchain_list]
6161
for toolchain in toolchain_list:
62-
cmdline = "python workspace_tools/build.py -m %s -t %s -c " % (build["target"], toolchain)
62+
cmdline = "python workspace_tools/build.py -m %s -t %s -j 4 -c " % (build["target"], toolchain)
6363
libs = build.get("libs", [])
6464
if libs:
6565
cmdline = cmdline + " ".join(["--" + l for l in libs])

0 commit comments

Comments
 (0)