Skip to content

Commit

Permalink
ci: better foldnames for wheels sections in travis dockers builds
Browse files Browse the repository at this point in the history
  • Loading branch information
swistakm committed Jul 11, 2017
1 parent 54de691 commit 20e3eaa
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions ci/docker_build_wheels.sh
Expand Up @@ -11,17 +11,20 @@ echo -e "\n\nWill build wheels for:"
for PY in /opt/python/*/bin/python; do echo "* $(${PY} --version 2>&1)"; done

for PYBIN in /opt/python/*/bin; do
echo -e "\n\nBuilding wheel for $(${PYBIN}/python --version 2>&1)"
FOLDNAME="wheel-$(basename $(dirname ${PYBIN}))"
travis_fold start ${FOLDNAME}
echo -e "Building wheel for $(${PYBIN}/python --version 2>&1)"

travis_fold start wheel-${PYBIN}
${PYBIN}/pip install -r /io/doc/requirements-test.txt
${PYBIN}/pip wheel /io/ -w /io/dist-wip/
travis_fold end wheel-${PYBIN}
travis_fold end ${FOLDNAME}
done


travis_fold start auditwheels
# Bundle external shared libraries into the wheels and fix platform tags
echo -e "\n\nAuditing wheels:"
for whl in /io/dist-wip/*.whl; do
auditwheel repair $whl -w /io/dist/
done
travis_fold end auditwheels

0 comments on commit 20e3eaa

Please sign in to comment.