diff options
| author | hathach <[email protected]> | 2023-06-02 16:21:49 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2023-06-02 16:21:49 +0700 |
| commit | 2016ad72f3dad74ee752943ab29c687a82687255 (patch) | |
| tree | 81cbc38df7cade0d247a6c238e3fc6e20beb3be7 | |
| parent | 11fb837b51417ec41b8244ebbbab828b9f3fce37 (diff) | |
fix iar ci
| -rw-r--r-- | tools/build_cmake.py | 2 | ||||
| -rw-r--r-- | tools/build_utils.py | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/tools/build_cmake.py b/tools/build_cmake.py index 140105620..eb7375ae2 100644 --- a/tools/build_cmake.py +++ b/tools/build_cmake.py @@ -61,7 +61,7 @@ def build_family(family, toolchain_option): if os.getenv('CI'): # always print build output if in CI - print(f"::group::{title} build error") + print(f"::group::{title}") print(r.stdout.decode("utf-8")) print(f"::endgroup::") else: diff --git a/tools/build_utils.py b/tools/build_utils.py index ec850e732..6f907729b 100644 --- a/tools/build_utils.py +++ b/tools/build_utils.py @@ -47,6 +47,7 @@ def skip_example(example, board): mk_contents = board_mk.read_text() + mcu = "NONE" for token in mk_contents.split(): if "CFG_TUSB_MCU=OPT_MCU_" in token: # Strip " because cmake files has them. |
