Skip to content

Commit f603199

Browse files
authored
fix
1 parent f09b481 commit f603199

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tools/ci/bsp_buildings.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def build_bsp(bsp, scons_args='',name='default'):
6868

6969
nproc = multiprocessing.cpu_count()
7070
os.chdir(rtt_root)
71-
cmd = f'scons -C bsp/{bsp} -j{nproc} {scons_args} --debug=time'
71+
cmd = f'scons -C bsp/{bsp} -j{nproc} {scons_args}' # --debug=time for debug time
7272
__, res = run_cmd(cmd, output_info=True)
7373

7474
if res != 0:
@@ -151,7 +151,7 @@ def build_bsp_attachconfig(bsp, attach_file):
151151

152152
scons_args = check_scons_args(attach_path)
153153

154-
res = build_bsp(bsp, scons_args,name=attach_file.tostring())
154+
res = build_bsp(bsp, scons_args,name=attach_file)
155155

156156
shutil.copyfile(config_bacakup, config_file)
157157
os.remove(config_bacakup)

0 commit comments

Comments
 (0)