Skip to content

Commit 3f9a7b2

Browse files
committed
Test auditwheel
1 parent 867521e commit 3f9a7b2

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.github/workflows/build-wheels-aarch64-linux.yml

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ name: Build Aarch64 Linux Wheels
22

33
on:
44
pull_request:
5+
paths:
6+
- packaging/post_build_script.sh
57
push:
68
branches:
79
- nightly

packaging/post_build_script.sh

+6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
#!/bin/bash
2+
pip install auditwheel
3+
4+
if [[ ${ARCH} == "aarch64" ]]; then
5+
auditwheel repair --plat manylinux_2_28_aarch64 pytorch/vision/dist/*.whl
6+
fi
7+
28
LD_LIBRARY_PATH="/usr/local/lib:$CUDA_HOME/lib64:$LD_LIBRARY_PATH" python packaging/wheel/relocate.py
39

410
pip install torchvision-extra-decoders

0 commit comments

Comments
 (0)