From: Bill Zorn Date: Tue, 21 Aug 2018 00:49:54 +0000 (-0700) Subject: oops - don't delete the wheels right after building them X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b60dc9e4447a735bbec2fb6cda1fbd820b19d4b9;hp=258f598706dfbebcd867e0450afa1e67f7625bbf;p=sfpy.git oops - don't delete the wheels right after building them --- diff --git a/docker-build-wheels.sh b/docker-build-wheels.sh index 80fbd00..7903031 100755 --- a/docker-build-wheels.sh +++ b/docker-build-wheels.sh @@ -1,7 +1,8 @@ #!/bin/bash set -e -x cd /io/ -ls + +rm wheelhouse/*.whl (cd SoftPosit/build/Linux-x86_64-GCC; make clean; make) (cd berkeley-softfloat-3/build/Linux-x86_64-GCC; make clean; make) @@ -10,8 +11,6 @@ for PYBIN in /opt/python/*/bin; do "${PYBIN}/pip" wheel . -w wheelhouse/ done -rm wheelhouse/*.whl - for whl in wheelhouse/*.whl; do auditwheel repair "$whl" -w wheelhouse/ done