oops - don't delete the wheels right after building them
authorBill Zorn <bill.zorn@gmail.com>
Tue, 21 Aug 2018 00:49:54 +0000 (17:49 -0700)
committerBill Zorn <bill.zorn@gmail.com>
Tue, 21 Aug 2018 00:49:54 +0000 (17:49 -0700)
docker-build-wheels.sh

index 80fbd0086e2a1a6eafe2d834dc84106dcfc164cf..7903031fed5c69c227a83e72c5361033efc221f5 100755 (executable)
@@ -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