mirror of
https://github.com/msgpack/msgpack-python.git
synced 2026-02-13 19:04:16 +00:00
Build linux and macOS wheels on GitHub Actions. (#409)
This commit is contained in:
parent
12506d8d91
commit
2849f5582a
4 changed files with 154 additions and 5 deletions
|
|
@ -10,5 +10,11 @@ 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
|
||||
done
|
||||
|
||||
cd dist
|
||||
for whl in *.whl; do
|
||||
auditwheel repair "$whl"
|
||||
rm "$whl"
|
||||
done
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue