Skip to content
Snippets Groups Projects

Support new Gaudi CMake

Merged Marco Clemencic requested to merge support-new-gaudi-cmake into master
1 file
+ 7
7
Compare changes
  • Side-by-side
  • Inline
@@ -296,13 +296,6 @@ class cmake_old(make):
'post-install', 'clean')
]
output = (
output[1].returncode, # use the build return code
''.join(step.stdout for step in output),
''.join(step.stderr for step in output),
output[0].started,
output[-1].completed)
# Write configuration logfile fragment for "collect logs" script
ensure_dir(os.path.join(proj.baseDir, 'build', 'configure'))
with open(
@@ -318,6 +311,13 @@ class cmake_old(make):
format(
(output[0].completed - output[0].started).total_seconds()))
output = (
output[1].returncode, # use the build return code
''.join(step.stdout for step in output),
''.join(step.stderr for step in output),
output[0].started,
output[-1].completed)
return BuildResults(proj, *output)
def clean(self, proj, **kwargs):
Loading