@@ -225,18 +225,33 @@ jobs:
225
225
needs : [ TestLinux, TestWindows ]
226
226
if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
227
227
runs-on : ubuntu-latest
228
- strategy :
229
- max-parallel : 4
230
- matrix :
231
- MANYLINUX :
232
- - { VERSION: '2010', ARCH: 'x86_64' }
233
- - { VERSION: '2014', ARCH: 'i686' }
228
+ # strategy:
229
+ # max-parallel: 4
230
+ # matrix:
231
+ # MANYLINUX:
232
+ # - { VERSION: '2010', ARCH: 'x86_64' }
233
+ # - { VERSION: '2014', ARCH: 'i686' }
234
234
# - { VERSION: '2014', ARCH: 'aarch64' }
235
- name : " Release for manylinux${{ matrix.MANYLINUX.VERSION }}_${{ matrix.MANYLINUX.ARCH }}"
235
+ # name: "Release for manylinux${{ matrix.MANYLINUX.VERSION }}_${{ matrix.MANYLINUX.ARCH }}"
236
236
steps :
237
237
- uses : actions/checkout@v2
238
- - name : Build Python wheels
239
- uses : RalfG/python-wheels-manylinux-build@v0.3.4-manylinux${{ matrix.MANYLINUX.VERSION }}_${{ matrix.MANYLINUX.ARCH }}
238
+ - name : Build Python manylinux2010-x86_64 wheels
239
+ uses : RalfG/python-wheels-manylinux-build@v0.3.4-manylinux2010_x86_64
240
+ with :
241
+ python-versions : ' cp37-cp37m cp38-cp38 cp39-cp39 cp310-cp310'
242
+ build-requirements : ' cython'
243
+ - name : Build Python manylinux2014-x86_64 wheels
244
+ uses : RalfG/python-wheels-manylinux-build@v0.3.4-manylinux2014_x86_64
245
+ with :
246
+ python-versions : ' cp37-cp37m cp38-cp38 cp39-cp39 cp310-cp310'
247
+ build-requirements : ' cython'
248
+ - name : Build Python manylinux2010-i686 wheels
249
+ uses : RalfG/python-wheels-manylinux-build@v0.3.4-manylinux2010_i686
250
+ with :
251
+ python-versions : ' cp37-cp37m cp38-cp38 cp39-cp39 cp310-cp310'
252
+ build-requirements : ' cython'
253
+ - name : Build Python manylinux2014-i686 wheels
254
+ uses : RalfG/python-wheels-manylinux-build@v0.3.4-manylinux2014_i686
240
255
with :
241
256
python-versions : ' cp37-cp37m cp38-cp38 cp39-cp39 cp310-cp310'
242
257
build-requirements : ' cython'
0 commit comments