2020-04-28 18:23:44 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
d=$(pwd)
|
|
|
|
if test x"$(basename $d)" = xbuilder; then
|
|
|
|
d=${d}/../
|
|
|
|
fi
|
|
|
|
if ! [ -e ${d}/setup.py ] ; then
|
|
|
|
echo "Unknown directory. Please move to the root of cosmotool source tree."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2024-04-25 17:05:54 +02:00
|
|
|
podman run -ti --rm -e PLAT=manylinux2014_x86_64 -v ${d}:/io:Z quay.io/pypa/manylinux2014_x86_64 /io/builder/build-wheels.sh
|