File tree Expand file tree Collapse file tree 1 file changed +9
-7
lines changed
Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -156,13 +156,15 @@ for PYBIN in "${PYBINARIES[@]}"; do
156156
157157done
158158
159- /opt/python/cp37-cp37m/bin/pip3 install auditwheel wheel
160- # Since there are no external shared libraries to bundle into the wheels
161- # this step will fixup the wheel switching from 'linux' to 'manylinux2014' tag
162- for whl in dist/itk_* linux_$( uname -p) .whl; do
163- /opt/python/cp37-cp37m/bin/auditwheel repair --plat manylinux2014_x86_64 ${whl} -w /work/dist/
164- rm ${whl}
165- done
159+ if test " ${ARCH} " == " x64" ; then
160+ /opt/python/cp37-cp37m/bin/pip3 install auditwheel wheel
161+ # Since there are no external shared libraries to bundle into the wheels
162+ # this step will fixup the wheel switching from 'linux' to 'manylinux2014' tag
163+ for whl in dist/itk_* linux_$( uname -p) .whl; do
164+ /opt/python/cp37-cp37m/bin/auditwheel repair --plat manylinux2014_x86_64 ${whl} -w /work/dist/
165+ rm ${whl}
166+ done
167+ fi
166168for itk_wheel in dist/itk-* linux* .whl; do
167169 mv ${itk_wheel} ${itk_wheel/ linux/ manylinux2014}
168170done
You can’t perform that action at this time.
0 commit comments