mirror of
https://github.com/msgpack/msgpack-python.git
synced 2025-10-19 20:03:16 +00:00
22 lines
431 B
Bash
22 lines
431 B
Bash
#!/bin/bash
|
|
DOCKER_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
source "$DOCKER_DIR/shared.env"
|
|
|
|
set -e -x
|
|
|
|
ARCH=`uname -p`
|
|
echo "arch=$ARCH"
|
|
|
|
ls /opt/python
|
|
|
|
for V in "${PYTHON_VERSIONS[@]}"; do
|
|
PYBIN=/opt/python/$V/bin
|
|
rm -rf build/ # Avoid lib build by narrow Python is used by wide python
|
|
$PYBIN/python -m build -w
|
|
done
|
|
|
|
cd dist
|
|
for whl in *.whl; do
|
|
auditwheel repair "$whl"
|
|
rm "$whl"
|
|
done
|