File tree 1 file changed +6
-7
lines changed
1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -169,15 +169,9 @@ jobs:
169
169
uses : docker/setup-qemu-action@v3
170
170
with :
171
171
platforms : all
172
+ image : ' docker.io/tonistiigi/binfmt:desktop-v8.1.5'
172
173
if : runner.os == 'Linux'
173
174
174
- - name : Install dev dependencies
175
- run : |
176
- sudo apt-get install build-essential software-properties-common -y
177
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
178
- sudo apt-get update
179
- sudo apt-get install gcc-snapshot -y
180
-
181
175
- uses : actions/setup-python@v5
182
176
name : Install Python
183
177
with :
@@ -190,6 +184,11 @@ jobs:
190
184
- name : Build wheels
191
185
env :
192
186
CIBW_BUILD : " cp39* cp310* cp311* cp312* cp313*" # limit to specific version since it take much more time than jobs limit
187
+ CIBW_BEFORE_BUILD : |
188
+ sudo apt-get install build-essential software-properties-common -y && \
189
+ sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y && \
190
+ sudo apt-get update && \
191
+ sudo apt-get install gcc-snapshot -y
193
192
run : |
194
193
python -m cibuildwheel --archs ${{ matrix.archs }} --output-dir wheelhouse
195
194
You can’t perform that action at this time.
0 commit comments