mirror of https://github.com/google/oss-fuzz.git
Don't tee build logs. (#10647)
`tee` will override the compile return code.
This commit is contained in:
parent
0e8d11c84d
commit
edadf41dcd
|
@ -253,7 +253,7 @@ def get_compile_step(project, build, env, parallel, upload_build_logs=None):
|
||||||
f'{build.architecture} {project.name}\n' + '*' * 80)
|
f'{build.architecture} {project.name}\n' + '*' * 80)
|
||||||
compile_output_redirect = ''
|
compile_output_redirect = ''
|
||||||
if upload_build_logs:
|
if upload_build_logs:
|
||||||
compile_output_redirect = f'|& tee {LOCAL_BUILD_LOG_PATH} '
|
compile_output_redirect = f'&> {LOCAL_BUILD_LOG_PATH} '
|
||||||
|
|
||||||
compile_step = {
|
compile_step = {
|
||||||
'name': project.image,
|
'name': project.image,
|
||||||
|
|
Loading…
Reference in New Issue