mirror of https://github.com/ARMmbed/mbed-os.git
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 outputpull/750/head
parent
6255549570
commit
fa5722a39c
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue