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 52c69f4 commit 87e8c9bCopy full SHA for 87e8c9b
docker/build_scripts/finalize.sh
@@ -68,6 +68,12 @@ export SSL_CERT_FILE=/opt/_internal/certs.pem
68
pushd $MY_DIR/requirements-tools
69
for TOOL_PATH in $(find . -type f); do
70
TOOL=$(basename ${TOOL_PATH})
71
+ if [ "${AUDITWHEEL_ARCH}" == "armv7l" ]; then
72
+ case ${TOOL} in
73
+ swig) apk add --no-cache swig; continue;;
74
+ cmake) apk add --no-cache cmake; continue;;
75
+ esac
76
+ fi
77
pipx install --pip-args="--require-hashes -r" ${TOOL}
78
done
79
popd
0 commit comments