Skip to content

Commit

Permalink
clean up wheels ci job
Browse files Browse the repository at this point in the history
  • Loading branch information
emcek committed Oct 13, 2024
1 parent 87d5721 commit 9728cc4
Showing 1 changed file with 4 additions and 116 deletions.
120 changes: 4 additions & 116 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,16 +86,12 @@ jobs:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Install cibuildwheel
# Nb. keep cibuildwheel version pin consistent with job below
run: pipx install cibuildwheel==2.16.5
run: pipx install cibuildwheel==2.21.3
- id: set-matrix
run: |
MATRIX=$(
{
cibuildwheel --print-build-identifiers --platform linux \
| jq -nRc '{"only": inputs, "os": "ubuntu-latest"}' \
&& cibuildwheel --print-build-identifiers --platform macos \
| jq -nRc '{"only": inputs, "os": "macos-latest"}' \
&& cibuildwheel --print-build-identifiers --platform windows \
cibuildwheel --print-build-identifiers --platform windows \
| jq -nRc '{"only": inputs, "os": "windows-2019"}'
} | jq -sc
)
Expand Down Expand Up @@ -158,9 +154,8 @@ jobs:

upload_release_assets:
name: Upload Release Wheels
needs: [ build_wheels, Linux, non-Linux ]
needs: [ build_wheels ]
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags')

permissions:
contents: write # to create GitHub release (softprops/action-gh-release)
Expand All @@ -185,113 +180,6 @@ jobs:
with:
files: ./bdist_downloads/*.whl

Linux:
runs-on: ubuntu-latest

strategy:
# Allows for matrix sub-jobs to fail without canceling the rest
fail-fast: false

matrix:
image:
- manylinux2014_x86_64
- manylinux2014_i686
pyversion: ["*"]

include:
- image: manylinux2014_aarch64
pyversion: "cp36*"

steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

- name: Check out recursively
run: git submodule update --init --recursive

- name: Set up Python
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
with:
python-version: "3.9"

- name: Install dependencies
run: python -m pip install -r requirements.txt

- name: Build Linux wheels
run: make USE_BUNDLE=true sdist wheel_${{ matrix.image }}
env: { PYTHON_BUILD_VERSION: "${{ matrix.pyversion }}" }

- name: Upload wheels
uses: actions/upload-artifact@694cdabd8bdb0f10b2cea11669e1bf5453eed0a6 # v4.2.0
with:
name: wheels-${{ matrix.image }}
path: wheelhouse_*/*-m*linux*.whl # manylinux / musllinux
if-no-files-found: ignore

non-Linux:
strategy:
# Allows for matrix sub-jobs to fail without canceling the rest
fail-fast: false

matrix:
os:
- macos-12
#- windows-2019
pyversion:
- "2.7"
- "3.6"
#- "pypy-3.7-v7.3.7"
#- "pypy-3.8-v7.3.7"
#- "pypy-3.9-v7.3.11"
#- "pypy-3.10-v7.3.13"

exclude:
# outdated compilers and probably not worth supporting anymore
- os: windows-2019
pyversion: "2.7"

runs-on: ${{ matrix.os }}
env:
USE_BUNDLE: "true"
MACOSX_DEPLOYMENT_TARGET: "11.0"
LUPA_WITH_LUA_DLOPEN: ${{ startsWith(matrix.os, 'windows') && 'false' || 'true' }}
PYTHON_BIN_DIR: ${{ startsWith(matrix.pyversion, '2.') && '/Library/Frameworks/Python.framework/Versions/2.7/bin' || '' }}

steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

- name: Check out recursively
run: git submodule update --init --recursive

- name: Set up Python
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
# macOS has Py2.7 installed system wide
if: matrix.pyversion != '2.7'
with:
python-version: ${{ matrix.pyversion }}

- name: Install MacOS dependencies
if: startsWith(matrix.os, 'mac')
run: |
brew install automake libtool
ln -s /usr/local/bin/glibtoolize /usr/local/bin/libtoolize
- name: Install dependencies
run: |
export PATH=$PYTHON_BIN_DIR:$PATH
python -m pip install wheel -r requirements.txt
- name: Build wheels
run: |
export PATH=$PYTHON_BIN_DIR:$PATH
python setup.py --with-cython sdist ${{ contains(matrix.pyversion, '3.') && 'build_ext -j6' || '' }} bdist_wheel
- name: Upload wheels
uses: actions/upload-artifact@694cdabd8bdb0f10b2cea11669e1bf5453eed0a6 # v4.2.0
with:
name: wheels-${{ matrix.pyversion }}-${{ matrix.os }}
path: dist/*.whl
if-no-files-found: ignore

pypi:
needs: [ upload_release_assets ]
runs-on: ubuntu-latest
Expand Down Expand Up @@ -324,4 +212,4 @@ jobs:
password: ${{ secrets.TEST_PYPI_TOKEN }}
skip-existing: true
verbose: true
print-hash: true
print-hash: true

0 comments on commit 9728cc4

Please sign in to comment.