File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed
Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments