@@ -225,18 +225,33 @@ jobs:
225225 needs : [ TestLinux, TestWindows ]
226226 if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
227227 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' }
234234# - { 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 }}"
236236 steps :
237237 - uses : actions/checkout@v2
238- - name : Build Python wheels
239- uses :
RalfG/[email protected] ${{ matrix.MANYLINUX.VERSION }}_${{ matrix.MANYLINUX.ARCH }} 238+ - name : Build Python manylinux2010-x86_64 wheels
239+ uses :
RalfG/[email protected] _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/[email protected] _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/[email protected] _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/[email protected] _i686 240255 with :
241256 python-versions : ' cp37-cp37m cp38-cp38 cp39-cp39 cp310-cp310'
242257 build-requirements : ' cython'
0 commit comments