Skip to content

Commit 87e8c9b

Browse files
committed
fix tool installation
1 parent 52c69f4 commit 87e8c9b

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

docker/build_scripts/finalize.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,12 @@ export SSL_CERT_FILE=/opt/_internal/certs.pem
6868
pushd $MY_DIR/requirements-tools
6969
for TOOL_PATH in $(find . -type f); do
7070
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
7177
pipx install --pip-args="--require-hashes -r" ${TOOL}
7278
done
7379
popd

0 commit comments

Comments
 (0)