Added --silent switches to both build.py and make.py.

build_travis.py now executes build.py and make.py with --silent switches to save space on Travis's console output
pull/750/head
Przemek Wirkus 2014-12-03 11:01:19 +00:00
parent 6255549570
commit fa5722a39c
1 changed files with 1 additions and 5 deletions

View File

@ -61,7 +61,6 @@ build_list = (
{ "target": "LPC4088", "toolchains": "GCC_ARM", "libs": ["dsp", "rtos", "usb", "fat"] },
{ "target": "ARCH_PRO", "toolchains": "GCC_ARM", "libs": ["dsp", "rtos", "fat"] },
{ "target": "LPC1549", "toolchains": "GCC_ARM", "libs": ["dsp", "rtos", "fat"] },
)
################################################################################
@ -112,10 +111,7 @@ def run_test_linking(dry_run):
for test_lib in tests:
test_names = tests[test_lib]
test_lib_switch = "--" + test_lib if test_lib else ""
cmdline = "python workspace_tools/make.py -m %s -t %s %s -n %s" % (link["target"],
toolchain,
test_lib_switch,
",".join(test_names))
cmdline = "python workspace_tools/make.py -m %s -t -c --silent %s %s -n %s " % (link["target"], toolchain, test_lib_switch, ",".join(test_names))
print "Executing: " + cmdline
if not dry_run:
if os.system(cmdline) != 0: