updating some package info
[sfpy.git] / docker-build-wheels.sh
1 #!/bin/bash
2 set -e -x
3 cd /io/
4 ls
5
6 (cd SoftPosit/build/Linux-x86_64-GCC; make clean; make)
7 (cd berkeley-softfloat-3/build/Linux-x86_64-GCC; make clean; make)
8
9 for PYBIN in /opt/python/*/bin; do
10 "${PYBIN}/pip" wheel . -w wheelhouse/
11 done
12
13 rm wheelhouse/*.whl
14
15 for whl in wheelhouse/*.whl; do
16 auditwheel repair "$whl" -w wheelhouse/
17 done
18
19 rm wheelhouse/*linux_x86_64.whl
20
21 (cd SoftPosit/build/Linux-x86_64-GCC; make clean)
22 (cd berkeley-softfloat-3/build/Linux-x86_64-GCC; make clean)