From b60dc9e4447a735bbec2fb6cda1fbd820b19d4b9 Mon Sep 17 00:00:00 2001 From: Bill Zorn Date: Mon, 20 Aug 2018 17:49:54 -0700 Subject: [PATCH] oops - don't delete the wheels right after building them --- docker-build-wheels.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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 -- 2.30.2