Skip to content

Commit

Permalink
Added include mikroeUtilsCommon
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanRuzavin committed Sep 24, 2024
1 parent 4918883 commit b759b7e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/install_necto.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def main():
run_command("7za x NECTOInstaller.zip")

print("Step 3: Install NECTO")
run_command("./NECTOInstaller installer --install-packages necto_installer necto_application database /home/runner/MikroElektronika /home/runner/.MIKROE/NECTOStudio7 > /dev/null 2>&1")
run_command("./NECTOInstaller installer --install-packages necto_installer necto_application database mikroe_utils_common /home/runner/MikroElektronika /home/runner/.MIKROE/NECTOStudio7 > /dev/null 2>&1")

print("Step 4: Move installer to MIKROE if it's generated in root")
if os.path.isfile("/home/runner/MikroElektronika/installer_tmp"):
Expand Down
3 changes: 1 addition & 2 deletions scripts/recursive_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,8 @@ def run_builds(mcu_dependencies, current_package, doc_ds):
sdk = get_sdk_version()
compilers = ['gcc_arm_none_eabi', 'clang-llvm']
# Run build for all MCUs from package.
print(f"\033[93mRunning build for {current_package}\033[0m")
print(f"\033[93mRunning build for {len(mcu_dependencies[current_package][doc_ds])} MCUs in {current_package}\033[0m")
for mcu in mcu_dependencies[current_package][doc_ds]:
print(f"\033[93mRunning build for {len(mcu_dependencies[current_package][doc_ds])} MCUs\033[0m")
for compiler in compilers:
print(f"\033[93mRunning build for {mcu} MCU with {compiler}\033[0m")
cmd = f'xvfb-run --auto-servernum --server-num=1 {toolPath}/sdk_build_automation --isBareMetal "0" --compiler "{compiler}" --sdk "{sdk}" --board "GENERIC_ARM_BOARD" --mcu "{mcu}" --installPrefix "{testPath}/mcu_build/{compiler}"'
Expand Down

0 comments on commit b759b7e

Please sign in to comment.