Use absolute path

This commit is contained in:
Armen Zambrano G 2021-09-09 09:53:53 -04:00
parent e4d5059eef
commit 618496e051

View File

@ -158,7 +158,10 @@ jobs:
env:
CIBW_ARCHS: arm64
# This changes the default in order to place the wheel in "repaired_wheels"
CIBW_REPAIR_WHEEL_COMMAND: delocate-listdeps {wheel} && delocate-wheel --require-archs {delocate_archs} -w repaired_wheels {wheel}
# The -w argument requires an absolute path
CIBW_REPAIR_WHEEL_COMMAND: |
delocate-listdeps {wheel} &&
delocate-wheel --require-archs {delocate_archs} -w ${{ github.workspace}}/repaired_wheels {wheel}
# This allows substitution within setup.py
PACKAGE_NAME: psycopg2-binary