summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2020-08-25 19:44:14 -0400
committerGitHub <noreply@github.com>2020-08-25 18:44:14 -0500
commit06bdac893b726c93146606fe5f7f27838460a7f2 (patch)
tree62d51f59448151a197b99d441a9fe7d88a7f10cc
parent92f86911c6d9060698cf7cf3fbc87f2db728529b (diff)
downloadpy-bcrypt-git-06bdac893b726c93146606fe5f7f27838460a7f2.tar.gz
remove page-size wizard nonsense now that the wheel buidler is fixed (#230)
-rw-r--r--.github/workflows/wheel-builder.yml5
1 files changed, 1 insertions, 4 deletions
diff --git a/.github/workflows/wheel-builder.yml b/.github/workflows/wheel-builder.yml
index 8c3be26..161f96b 100644
--- a/.github/workflows/wheel-builder.yml
+++ b/.github/workflows/wheel-builder.yml
@@ -112,9 +112,6 @@ jobs:
- uses: docker://quay.io/pypa/manylinux2014_aarch64
# The weird pip cache nonsense below is due to docker ownership issues. We want
# a cache because otherwise we end up building cffi twice.
- # The bizarro max-page-size linker flag is to enforce 64k alignment even on 4k
- # systems so we don't get ELF load command alignment not page-aligned on 64k
- # systems.
with:
args: |
bash -c "set -xe;
@@ -126,7 +123,7 @@ jobs:
tar zxvf bcrypt*.tar.gz;
mkdir tmpwheelhouse;
pushd bcrypt*;
- CFLAGS=\"-Wl,-z,max-page-size=0x10000\" ../.venv/bin/python setup.py bdist_wheel --py-limited-api=${{ matrix.PYTHON.ABI_VERSION }};
+ ../.venv/bin/python setup.py bdist_wheel --py-limited-api=${{ matrix.PYTHON.ABI_VERSION }};
mv dist/bcrypt*.whl ../tmpwheelhouse;
popd;
auditwheel repair tmpwheelhouse/bcrypt*.whl -w wheelhouse/;