beginning to add tests
[sfpy.git] / docker-build-wheels.sh
index 80fbd0086e2a1a6eafe2d834dc84106dcfc164cf..bf7dc1c75daf245494d9f1d0551cc7341a301dd2 100755 (executable)
@@ -1,7 +1,8 @@
 #!/bin/bash
 set -e -x
 cd /io/
-ls
+
+rm -f 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