Skip to content

Commit dce3dd6

Browse files
committed
.
1 parent f6673f1 commit dce3dd6

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/pysplashsurf_CI.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,10 +115,17 @@ jobs:
115115
- uses: actions/setup-python@v5
116116
with:
117117
python-version: 3.12
118+
# QEMU is required for non-native archs
119+
# https://cibuildwheel.pypa.io/en/stable/faq/#emulation
120+
- name: Set up QEMU
121+
if: runner.os == 'Linux'
122+
uses: docker/setup-qemu-action@v3
123+
with:
124+
platforms: all
118125
- name: Install cibuildwheel
119126
run: python -m pip install cibuildwheel==3.1.3
120127
- name: Build wheels
121-
run: python -m cibuildwheel --output-dir dist pysplashsurf
128+
run: python -m cibuildwheel --output-dir wheelhouse pysplashsurf
122129
env:
123130
CIBW_BUILD: ${{ matrix.platform.python-version }}
124131
CIBW_ARCHS: ${{ matrix.platform.archs }}
@@ -130,7 +137,7 @@ jobs:
130137
uses: actions/upload-artifact@v4
131138
with:
132139
name: wheels-${{ matrix.platform.python-version }}
133-
path: dist
140+
path: wheelhouse
134141

135142
# sdist:
136143
# name: Build source distribution

0 commit comments

Comments
 (0)