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