python/{cmake,autotools}: build in verbose mode

Make sure all the gory details are visible in CI logs.
This commit is contained in:
Max Kellermann
2022-08-08 10:05:30 +02:00
parent d32ed194e8
commit 10aec174d5
3 changed files with 5 additions and 3 deletions

@ -115,5 +115,5 @@ class MesonProject(Project):
def _build(self, toolchain):
build = self.configure(toolchain)
subprocess.check_call(['ninja', 'install'],
subprocess.check_call(['ninja', '-v', 'install'],
cwd=build, env=toolchain.env)