Skip to content

Commit

Permalink
Add musllinux build to wheel checking script
Browse files Browse the repository at this point in the history
  • Loading branch information
Rot127 committed Aug 16, 2024
1 parent 4a957fc commit a56a786
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion suite/check_wheel_bin_arch.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
filename = {
"macosx": "libcapstone.dylib",
"manylinux": "libcapstone.so",
"musllinux": "libcapstone.so",
"win": "capstone.dll",
}

Expand All @@ -45,7 +46,7 @@
continue
wheel_seen = True
target = re.search(r"py3-none-(.+).whl", f"{f}").group(1)
platform = re.search("^(win|manylinux|macosx)", target).group(1)
platform = re.search("^(win|manylinux|musllinux|macosx)", target).group(1)

arch = re.search(
"(universal2|x86_64|arm64|aarch64|i686|win32|amd64)$", target
Expand Down

0 comments on commit a56a786

Please sign in to comment.