Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated CI #253

Merged
merged 2 commits into from
Feb 18, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: [windows-latest, macos-latest, ubuntu-latest]
platform: [windows-latest, macos-latest, ubuntu-latest, ubuntu-24.04-arm]
python-version: ["3.10"]

steps:
Expand Down
100 changes: 58 additions & 42 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,63 +10,79 @@ on:

jobs:
build_sdist:
name: Build SDist
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true

- name: Build SDist
run: pipx run build --sdist

- name: Check metadata
run: pipx run twine check dist/*

- uses: actions/upload-artifact@v4
with:
name: dist-sdist
path: dist/*.tar.gz
- uses: actions/checkout@v4
with:
submodules: true
- run: pipx run build --sdist
- run: pipx run twine check dist/* || exit 1 # Ensure failure on twine check errors
- uses: actions/upload-artifact@v4
with:
name: dist-sdist
path: dist/*.tar.gz

build_wheels:
name: Build ${{ matrix.cpversion }} wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, ubuntu-24.04-arm, windows-latest, macos-13, macos-14]
# cp313 seemed to produce the same wheel name as cp312. Skip unless
# necessary.
cpversion: [cp38, cp39, cp310, cp311, cp312]
# github actions cp38 on macos-14 runners are cross compiling or
# something and confusing the stub generation. Just skip it for now.
# Maybe it'd be friendlier to disable the stub generation for this
# combination.
os: [ubuntu-24.04, ubuntu-24.04-arm, macos-14, macos-13, windows-latest] # Use specific versions for clarity
arch: [x86_64, arm64]
pybuilds: [cp38, cp39, cp310, cp311, cp312] # Define pybuilds at the top level
exclude:
- os: macos-14
cpversion: cp38

- os: ubuntu-24.04-arm # No need to specify arch, it's already implicit
arch: x86_64 # Exclude x86_64 on ARM
- os: macos-14 # Exclude macOS 14 (Sonoma)
arch: x86_64 # Exclude x86_64 explicitly
- os: macos-14 # Exclude cp38
pybuilds: cp38
- os: macos-13 # Exclude macOS 13 (Ventura) - arm64
arch: arm64 # Exclude arm64 on macOS 13
- os: macos-13
pybuilds: cp38

steps:
- uses: actions/checkout@v4

- uses: actions/setup-python@v5
with:
python-version: '3.12'

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.22.0

- name: Build wheels
# why do I need to specify this cpversion here?
- run: pip install cibuildwheel==2.22.0
- run: python -m cibuildwheel --output-dir wheelhouse
env:
CIBW_ARCHS: "auto64"
CIBW_BUILD: "${{ matrix.cpversion }}-*"
# why isn't auto64 working?
CIBW_SKIP: "cp*-manylinux_i686 cp*-musllinux* cp*-win32"
run: python -m cibuildwheel --output-dir wheelhouse

- uses: actions/upload-artifact@v4
CIBW_BUILD: "${{ matrix.pybuilds }}-*" # Use matrix.pybuilds and matrix.arch
CIBW_ARCHS_MACOS: ${{ matrix.arch }}
CIBW_SKIP: "cp*-manylinux_i686 cp*-musllinux* cp*-win32"
- name: Upload Artifact
uses: actions/upload-artifact@v4
continue-on-error: true # Important: Continue if upload fails
with:
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
# Include pybuilds in the artifact name
name: wheels-${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.pybuilds }}
path: ./wheelhouse/*.whl
if-no-files-found: error # Fail if no wheels are found
compression-level: 6
overwrite: false
include-hidden-files: false

release_artifacts:
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
needs: build_wheels
runs-on: ubuntu-latest
permissions:
id-token: write
contents: write
steps:
- uses: actions/download-artifact@v4
with:
path: ./artifacts
merge-multiple: true
- run: ls -R ./artifacts
- uses: ncipollo/release-action@v1
with:
allowUpdates: true
artifacts: "./artifacts/**/*"
token: ${{ secrets.GITHUB_TOKEN }}
- uses: pypa/[email protected]
with:
packages-dir: ./artifacts
5 changes: 5 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,18 @@ wheel.py-api = "cp312"
build-type = "Release"

[tool.cibuildwheel]
archs = "auto64"
# Necessary to see build output from the actual compilation
build-verbosity = 1

# Run pytest to ensure that the package was correctly built
test-command = "pytest {project}/tests"
test-requires = "pytest"

# linux images
manylinux-x86_64-image = "quay.io/pypa/manylinux_2_28_x86_64"
manylinux-aarch64-image = "quay.io/pypa/manylinux_2_28_aarch64"

# Don't test Python 3.8 wheels on macOS/arm64
test-skip="cp38-macosx_*:arm64"

Expand Down
Loading