RalfG / python-wheels-manylinux-build

GitHub Action to build Python manylinux wheels
https://github.com/marketplace/actions/python-wheels-manylinux-build
Apache License 2.0
92 stars 44 forks source link

report errors as failures, fix missing ./auditwheel on manylinux1 #31

Closed minrk closed 3 years ago

minrk commented 3 years ago

See https://github.com/minrk/pyzmq/runs/1441461029 for an example run with this failure reported as a success

The first issue can be reproduced in quay.io/pypa/manylinux1_x86_64 with:

touch foo.txt
find . -name foo.txt -execdir sh -c "echo '{}'" \;

and the second with:

touch foo.txt
find . -name foo.txt -exec sh -c "exit 1;" \; && echo "find exited with success"

closes #24