Skip to content

Commit

Permalink
manylinux 스크립트 정정 - aarch64 환경에서 tox로 테스트 안함
Browse files Browse the repository at this point in the history
  • Loading branch information
mete0r committed Mar 26, 2023
1 parent 94adebb commit d4d02ec
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .manylinux-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,13 @@ for PYBIN in /opt/python/*/bin; do
"${PYBIN}/pip" install -e /io/
"${PYBIN}/pip" wheel /io/ -w wheelhouse/
fi
if [ `uname -m` == 'aarch64' ]; then
cd /io/
${PYBIN}/pip install tox
TOXENV=$(tox_env_map "${PYBIN}")
${PYBIN}/tox -e ${TOXENV}
cd ..
fi
# if [ `uname -m` == 'aarch64' ]; then
# cd /io/
# ${PYBIN}/pip install tox
# TOXENV=$(tox_env_map "${PYBIN}")
# ${PYBIN}/tox -e ${TOXENV}
# cd ..
# fi
rm -rf /io/build /io/*.egg-info
fi
done
Expand Down

0 comments on commit d4d02ec

Please sign in to comment.