Flush stdout
So that the log output appears in the Jenkins logs before the cmake output.
This commit is contained in:
parent
b9f8ce9f20
commit
184d216b24
1 changed files with 1 additions and 1 deletions
|
@ -147,7 +147,7 @@ def run_cmake(projects: str, repo_path: str, config_file_path: str = None, *, dr
|
||||||
arguments = _create_args(config, llvm_enable_projects)
|
arguments = _create_args(config, llvm_enable_projects)
|
||||||
cmd = 'cmake ' + ' '.join(arguments)
|
cmd = 'cmake ' + ' '.join(arguments)
|
||||||
|
|
||||||
print('Running cmake with these arguments:\n{}'.format(cmd))
|
print('Running cmake with these arguments:\n{}'.format(cmd), flush=True)
|
||||||
if dryrun:
|
if dryrun:
|
||||||
print('Dryrun, not invoking CMake!')
|
print('Dryrun, not invoking CMake!')
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue