Skip to content

Commit 1ecd483

Browse files
committed
ci: Skip auditwheel for aarch64 wheels
Since the wheel is properly named by default and CMake doesn't have any external dependencies beside of openssl, this commit skips the repair.
1 parent f8b2d6e commit 1ecd483

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

scikit-ci.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,11 @@ build:
8686
circle:
8787
commands:
8888
- |
89-
# Since there are no external shared libraries to bundle into the wheels
90-
# this step will fixup the wheel switching from 'linux' to 'manylinux1' tag
9189
arch=${AUDITWHEEL_ARCH}
90+
if arch not in ["i686", "x64_86"]:
91+
return
92+
# Since there are no external shared libraries to bundle into the wheels
93+
# this step will fixup the wheel switching from 'linux' to 'manylinux' tag
9294
for whl in dist/*linux_${arch}.whl; do
9395
auditwheel repair --plat ${AUDITWHEEL_PLAT} $whl -w ./dist/
9496
rm $whl

0 commit comments

Comments
 (0)