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 1747fe3 commit 727842fCopy full SHA for 727842f
tools/ci/bsp_buildings.py
@@ -116,11 +116,12 @@ def build_bsp_cmake(bsp, scons_args=''):
116
117
"""
118
ext_flags = ''
119
+ scons_arg = scons_arg.strip()
120
if scons_args == "--strict":
121
print("scons using strict mode, build it with `-Werror` flag")
122
ext_flags += '-DCMAKE_COMPILE_WARNING_AS_ERROR=1'
123
elif scons_args != '':
- print("this project would be built regularly because `scons_args` is not empty")
124
+ print(f"this project would be built regularly because `scons_args` is `{scons_args}`")
125
return build_bsp_scons(bsp, scons_args)
126
success = True
127
os.chdir(rtt_root)
0 commit comments