Skip to content

Commit a56a786

Browse files
committed
Add musllinux build to wheel checking script
1 parent 4a957fc commit a56a786

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

suite/check_wheel_bin_arch.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
filename = {
3434
"macosx": "libcapstone.dylib",
3535
"manylinux": "libcapstone.so",
36+
"musllinux": "libcapstone.so",
3637
"win": "capstone.dll",
3738
}
3839

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

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

0 commit comments

Comments
 (0)