projects
/
sfpy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
258f598
)
oops - don't delete the wheels right after building them
author
Bill Zorn
<bill.zorn@gmail.com>
Tue, 21 Aug 2018 00:49:54 +0000
(17:49 -0700)
committer
Bill Zorn
<bill.zorn@gmail.com>
Tue, 21 Aug 2018 00:49:54 +0000
(17:49 -0700)
docker-build-wheels.sh
patch
|
blob
|
history
diff --git
a/docker-build-wheels.sh
b/docker-build-wheels.sh
index 80fbd0086e2a1a6eafe2d834dc84106dcfc164cf..7903031fed5c69c227a83e72c5361033efc221f5 100755
(executable)
--- 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