Skip to content

Commit

Permalink
chore(pm.py): add FIXME comment about riscv64 apt workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
MingcongBai committed Aug 7, 2024
1 parent 41d34f5 commit bdcb550
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions acbs/pm.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,8 @@ def check_if_available(name: str) -> bool:


def install_from_repo(packages: List[str], force_use_apt=False):
# FIXME: RISC-V build hosts is unreliable when using oma: random lock-ups
# during `oma refresh'. Disabling oma to workaround potential lock-ups.
if get_arch_name() == "riscv64" or force_use_apt:
return install_from_repo_apt(packages)

Expand Down

0 comments on commit bdcb550

Please sign in to comment.