Skip to content

Commit

Permalink
feat: add support for musllinux_aarch64
Browse files Browse the repository at this point in the history
Signed-off-by: JP-Ellis <[email protected]>
  • Loading branch information
JP-Ellis committed Mar 5, 2024
1 parent 8895276 commit 6043603
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions hatch_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,8 @@ def _pact_lib_url(self, version: str) -> str: # noqa: C901, PLR0912
os = "linux"
if platform.endswith("x86_64"):
machine = "x86_64-musl"
elif platform.endswith("aarch64"):
machine = "aarch64-musl"
else:
raise UnsupportedPlatformError(platform)
return PACT_LIB_URL.format(
Expand Down

0 comments on commit 6043603

Please sign in to comment.