Skip to content

Commit

Permalink
fix tool installation
Browse files Browse the repository at this point in the history
  • Loading branch information
mayeut committed Mar 11, 2023
1 parent f6bb294 commit cd1ae7e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docker/build_scripts/finalize.sh
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,12 @@ deactivate
pushd $MY_DIR/requirements-tools
for TOOL_PATH in $(find . -type f); do
TOOL=$(basename ${TOOL_PATH})
if [ "${AUDITWHEEL_PLAT}" == "musllinux_1_1_armv7l" ]; then
case ${TOOL} in
swig) apk add --no-cache swig; continue;;
cmake) apk add --no-cache cmake; continue;;
esac
fi
pipx install --pip-args="--require-hashes -r" ${TOOL}
done
popd
Expand Down

0 comments on commit cd1ae7e

Please sign in to comment.