We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 867521e commit 3f9a7b2Copy full SHA for 3f9a7b2
.github/workflows/build-wheels-aarch64-linux.yml
@@ -2,6 +2,8 @@ name: Build Aarch64 Linux Wheels
2
3
on:
4
pull_request:
5
+ paths:
6
+ - packaging/post_build_script.sh
7
push:
8
branches:
9
- nightly
packaging/post_build_script.sh
@@ -1,4 +1,10 @@
1
#!/bin/bash
+pip install auditwheel
+
+if [[ ${ARCH} == "aarch64" ]]; then
+ auditwheel repair --plat manylinux_2_28_aarch64 pytorch/vision/dist/*.whl
+fi
LD_LIBRARY_PATH="/usr/local/lib:$CUDA_HOME/lib64:$LD_LIBRARY_PATH" python packaging/wheel/relocate.py
10
pip install torchvision-extra-decoders
0 commit comments