We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4fcaa56 + 18bdf56 commit 835d38dCopy full SHA for 835d38d
tools/build_release.py
@@ -36,6 +36,7 @@
36
from tools.test_api import singletest_in_cli_mode
37
from tools.paths import TEST_DIR, MBED_LIBRARIES
38
from tools.tests import TEST_MAP
39
+from tools.notifier.term import TerminalNotifier
40
41
OFFICIAL_MBED_LIBRARY_BUILD = get_mbed_official_release('2')
42
@@ -168,11 +169,12 @@
168
169
id = "%s::%s" % (target_name, toolchain)
170
171
profile = extract_profile(parser, options, toolchain)
172
+ notify = TerminalNotifier(options.verbose)
173
174
try:
175
built_mbed_lib = build_mbed_libs(TARGET_MAP[target_name],
176
toolchain,
- verbose=options.verbose,
177
+ notify=notify,
178
jobs=options.jobs,
179
report=build_report,
180
properties=build_properties,
0 commit comments