Skip to content

Commit

Permalink
debug building wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
Bernard Giroux committed Dec 19, 2024
1 parent a738ed4 commit f1afd05
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,22 +35,22 @@ jobs:
- name: Checkout ttcrpy
uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v4

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install twine
- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.16.2
- name: Set up QEMU
if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v3
with:
platforms: all

- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
uses: pypa/[email protected]
env:
# configure cibuildwheel to build native archs ('auto'), and some
# emulated ones
CIBW_ARCHS_LINUX: auto aarch64

- uses: actions/upload-artifact@v4
with:
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
path: ./wheelhouse/*.whl

build_sdist:
Expand Down

0 comments on commit f1afd05

Please sign in to comment.