forked from pyca/bcrypt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix building windows abi3 wheels (pyca#681)
* It's debugging time * hack hack hack
- Loading branch information
Showing
1 changed file
with
1 addition
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -93,10 +93,6 @@ jobs: | |
# is installed in the container (which it is) | ||
sed -i "s:ID=alpine:ID=NotpineForGHA:" /etc/os-release | ||
if: startsWith(matrix.MANYLINUX.NAME, 'musllinux') && endsWith(matrix.MANYLINUX.NAME, 'aarch64') | ||
- uses: actions/[email protected] | ||
with: | ||
# The tag to build or the tag received by the tag event | ||
ref: ${{ github.event.inputs.version || github.ref }} | ||
- run: /opt/python/${{ matrix.PYTHON.VERSION }}/bin/python -m venv .venv | ||
- name: Install python dependencies | ||
run: .venv/bin/pip install -U pip wheel setuptools-rust | ||
|
@@ -136,11 +132,6 @@ jobs: | |
BIN_PATH: '/Library/Frameworks/Python.framework/Versions/3.11/bin/python3' | ||
name: "Python ${{ matrix.PYTHON.VERSION }} for ABI ${{ matrix.PYTHON.ABI_VERSION }} on macOS" | ||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
# The tag to build or the tag received by the tag event | ||
ref: ${{ github.event.inputs.version || github.ref }} | ||
persist-credentials: false | ||
- run: | | ||
curl "${{ matrix.PYTHON.DOWNLOAD_URL }}" -o python.pkg | ||
sudo installer -pkg python.pkg -target / | ||
|
@@ -187,14 +178,9 @@ jobs: | |
- {ARCH: 'x86', RUST_TRIPLE: 'i686-pc-windows-msvc'} | ||
- {ARCH: 'x64', RUST_TRIPLE: 'x86_64-pc-windows-msvc'} | ||
PYTHON: | ||
- {VERSION: "3.7", ABI_VERSION: "cp37"} | ||
- {VERSION: "3.11", ABI_VERSION: "cp37"} | ||
name: "${{ matrix.PYTHON.VERSION }} ${{ matrix.PYTHON.ABI_VERSION }} ${{ matrix.WINDOWS.ARCH }}" | ||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
# The tag to build or the tag received by the tag event | ||
ref: ${{ github.event.inputs.version || github.ref }} | ||
persist-credentials: false | ||
- uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 | ||
with: | ||
name: bcrypt-sdist | ||
|