Skip to content

Tool: Use TerminalNotifier in Mbed 2 release #7132

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 7, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion tools/build_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
from tools.test_api import singletest_in_cli_mode
from tools.paths import TEST_DIR, MBED_LIBRARIES
from tools.tests import TEST_MAP
from tools.notifier.term import TerminalNotifier

OFFICIAL_MBED_LIBRARY_BUILD = get_mbed_official_release('2')

Expand Down Expand Up @@ -168,11 +169,12 @@
id = "%s::%s" % (target_name, toolchain)

profile = extract_profile(parser, options, toolchain)
notify = TerminalNotifier(options.verbose)

try:
built_mbed_lib = build_mbed_libs(TARGET_MAP[target_name],
toolchain,
verbose=options.verbose,
notify=notify,
jobs=options.jobs,
report=build_report,
properties=build_properties,
Expand Down