Skip to content

Commit

Permalink
use cibuildwheel for linux
Browse files Browse the repository at this point in the history
  • Loading branch information
roeger committed Dec 17, 2024
1 parent b8be425 commit ba42bfa
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,18 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Build manylinux Python wheels
uses: RalfG/[email protected]_x86_64
with:
python-versions: 'cp36-cp36m cp37-cp37m'
- uses: actions/setup-python@v5

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

- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse

- uses: actions/upload-artifact@master
with:
name: linux-wheels
path: dist/*-manylinux*.whl
name: linux-wheel
path: ./wheelhouse/*.whl


build-windows:
Expand Down Expand Up @@ -90,7 +93,7 @@ jobs:

- uses: actions/download-artifact@master
with:
name: linux-wheels
name: linux-wheel
path: dist

- uses: actions/download-artifact@master
Expand Down Expand Up @@ -156,7 +159,7 @@ jobs:
steps:
- uses: actions/download-artifact@master
with:
name: linux-wheels
name: linux-wheel
path: dist

- uses: actions/download-artifact@master
Expand Down

0 comments on commit ba42bfa

Please sign in to comment.