Merge pull request #4530 from bridadan/verbose_example_build

Enable verbose builds when running example build tests
pull/4571/head
Sam Grove 2017-06-15 11:19:08 -05:00 committed by GitHub
commit 74b6e8cc4c
1 changed files with 1 additions and 1 deletions

View File

@ -356,7 +356,7 @@ def compile_repos(config, toolchains, targets, examples):
example['features']):
print("Compiling %s for %s, %s" % (name, target, toolchain))
proc = subprocess.Popen(["mbed-cli", "compile", "-t", toolchain,
"-m", target, "--silent"])
"-m", target, "-v"])
proc.wait()
example_summary = "{} {} {}".format(name, target, toolchain)
if proc.returncode: