diff options
| author | Inada Naoki <songofacandy@gmail.com> | 2020-02-17 17:42:53 +0900 |
|---|---|---|
| committer | Inada Naoki <songofacandy@gmail.com> | 2020-02-17 17:42:53 +0900 |
| commit | 456e0ff96a7ebf866bb6fb742eef1b8baa465466 (patch) | |
| tree | a78bf73439593f38f0ddf8a0f2c7583d6f3ccb87 /docker/buildwheel.sh | |
| parent | 12506d8d91ce5a7b76c2d8babe7e2d1e2851d3a2 (diff) | |
| download | msgpack-python-456e0ff96a7ebf866bb6fb742eef1b8baa465466.tar.gz | |
Build manylinux2010 wheels on GitHub Actions.
Diffstat (limited to 'docker/buildwheel.sh')
| -rw-r--r-- | docker/buildwheel.sh | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/docker/buildwheel.sh b/docker/buildwheel.sh index c953127..ca068849 100644 --- a/docker/buildwheel.sh +++ b/docker/buildwheel.sh @@ -10,5 +10,12 @@ echo "arch=$ARCH" 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 setup.py bdist_wheel -p manylinux1_${ARCH} + #$PYBIN/python setup.py bdist_wheel -p manylinux2010_${ARCH} + $PYBIN/python setup.py bdist_wheel +done + +cd dist +for whl in *.whl; do + auditwheel repair "$whl" + rm "$whl" done |
