Skip to content

Commit 7628623

Browse files
committed
github do not support dynamic uses
1 parent 8bf0b70 commit 7628623

File tree

1 file changed

+24
-9
lines changed

1 file changed

+24
-9
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 24 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -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/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
240255
with:
241256
python-versions: 'cp37-cp37m cp38-cp38 cp39-cp39 cp310-cp310'
242257
build-requirements: 'cython'

0 commit comments

Comments
 (0)