Skip to content

Commit

Permalink
chore(cibw): only build cp38 on x86 Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
vytas7 committed Aug 16, 2024
1 parent c1e3ab2 commit b9f0915
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions .github/workflows/cibuildwheel.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Build wheels using cibuildwheel (https://cibuildwheel.pypa.io/)
name: Build wheels

on:
Expand Down Expand Up @@ -68,12 +69,20 @@ jobs:
- name: win_amd64
os: windows-latest
python:
- cp38
- cp39
- cp310
- cp311
- cp312
- cp313
include:
- platform:
name: manylinux_x86_64
os: ubuntu-latest
python: cp38
- platform:
name: musllinux_x86_64
os: ubuntu-latest
python: cp38

defaults:
run:
Expand Down Expand Up @@ -109,8 +118,10 @@ jobs:
path: wheelhouse/*.whl

publish-wheels:
name: publish-wheels
needs: ["build-sdist", "build-wheels"]
name: publish
needs:
- build-sdist
- build-wheels
runs-on: ubuntu-latest

steps:
Expand Down

0 comments on commit b9f0915

Please sign in to comment.