We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 545bc2d commit b233db2Copy full SHA for b233db2
tools/ci/bsp_buildings.py
@@ -50,10 +50,6 @@ def build_bsp(bsp, scons_args=''):
50
cd {rtt_root}
51
scons -C bsp/{bsp} -j{nproc} {scons_args}
52
53
- cd {rtt_root}/bsp/{bsp}
54
- scons -c > /dev/null
55
- rm -rf packages
56
-
57
"""
58
success = True
59
os.chdir(rtt_root)
@@ -67,7 +63,7 @@ def build_bsp(bsp, scons_args=''):
67
63
68
64
nproc = multiprocessing.cpu_count()
69
65
70
- cmd = f'scons -C bsp/{bsp} -j{nproc} {scons_args}'
66
+ cmd = f'scons -C bsp/{bsp} -j12 {scons_args}'
71
__, res = run_cmd(cmd, output_info=True)
72
73
if res != 0:
0 commit comments