Skip to content

Commit 35ac3eb

Browse files
committed
Excluded ppc64le and s390x
1 parent 7598bb6 commit 35ac3eb

File tree

1 file changed

+100
-100
lines changed

1 file changed

+100
-100
lines changed

.github/workflows/accelerate-manylinux.yml

Lines changed: 100 additions & 100 deletions
Original file line numberDiff line numberDiff line change
@@ -240,56 +240,56 @@ jobs:
240240
name: accel-binary-${{ matrix.distro }}-${{ matrix.arch }}
241241
path: accelerate/dist/*.whl
242242

243-
wheels_manylinux_arm_ex:
244-
name: Wheels on ${{ matrix.distro }} ${{ matrix.arch }}
245-
246-
runs-on: ubuntu-latest
247-
strategy:
248-
matrix:
249-
distro: [manylinux2014, manylinux_2_28]
250-
arch: [ppc64le, s390x]
251-
252-
env:
253-
CIBW_MANYLINUX_AARCH64_IMAGE: ${{ matrix.distro }}
254-
CIBW_MANYLINUX_S390X_IMAGE: ${{ matrix.distro }}
255-
CIBW_MANYLINUX_PPC64LE_IMAGE: ${{ matrix.distro }}
256-
CIBW_BUILD: cp31*-manylinux*
257-
CIBW_ARCHS: ${{matrix.arch}}
258-
259-
steps:
260-
- name: Check out repository
261-
uses: actions/checkout@v4
262-
- name: Install Python
263-
uses: actions/setup-python@v5
264-
with:
265-
python-version: 3.x
266-
267-
- name: Set up QEMU
268-
uses: docker/setup-qemu-action@v3
269-
270-
- name: Build wheels (develop)
271-
uses: pypa/cibuildwheel@v2.22.0
272-
# if: ${{ github.ref == 'refs/heads/develop' }}
273-
with:
274-
package-dir: "./accelerate"
275-
output-dir: "./accelerate/dist"
276-
env:
277-
BUILD_EXTENSION: yes
278-
279-
- name: Build wheels (master)
280-
uses: pypa/cibuildwheel@v2.22.0
281-
if: ${{ github.ref == 'refs/heads/master' }}
282-
with:
283-
package-dir: "./accelerate"
284-
output-dir: "./accelerate/dist"
285-
env:
286-
BUILD_EXTENSION: yes
287-
288-
- name: Save wheels
289-
uses: actions/upload-artifact@v4
290-
with:
291-
name: accel-binary-${{ matrix.distro }}-${{ matrix.arch }}
292-
path: accelerate/dist/*.whl
243+
# wheels_manylinux_arm_ex:
244+
# name: Wheels on ${{ matrix.distro }} ${{ matrix.arch }}
245+
246+
# runs-on: ubuntu-latest
247+
# strategy:
248+
# matrix:
249+
# distro: [manylinux2014, manylinux_2_28]
250+
# arch: [ppc64le, s390x]
251+
252+
# env:
253+
# CIBW_MANYLINUX_AARCH64_IMAGE: ${{ matrix.distro }}
254+
# CIBW_MANYLINUX_S390X_IMAGE: ${{ matrix.distro }}
255+
# CIBW_MANYLINUX_PPC64LE_IMAGE: ${{ matrix.distro }}
256+
# CIBW_BUILD: cp3*-manylinux*
257+
# CIBW_ARCHS: ${{matrix.arch}}
258+
259+
# steps:
260+
# - name: Check out repository
261+
# uses: actions/checkout@v4
262+
# - name: Install Python
263+
# uses: actions/setup-python@v5
264+
# with:
265+
# python-version: 3.x
266+
267+
# - name: Set up QEMU
268+
# uses: docker/setup-qemu-action@v3
269+
270+
# - name: Build wheels (develop)
271+
# uses: pypa/cibuildwheel@v2.22.0
272+
# # if: ${{ github.ref == 'refs/heads/develop' }}
273+
# with:
274+
# package-dir: "./accelerate"
275+
# output-dir: "./accelerate/dist"
276+
# env:
277+
# BUILD_EXTENSION: yes
278+
279+
# - name: Build wheels (master)
280+
# uses: pypa/cibuildwheel@v2.22.0
281+
# if: ${{ github.ref == 'refs/heads/master' }}
282+
# with:
283+
# package-dir: "./accelerate"
284+
# output-dir: "./accelerate/dist"
285+
# env:
286+
# BUILD_EXTENSION: yes
287+
288+
# - name: Save wheels
289+
# uses: actions/upload-artifact@v4
290+
# with:
291+
# name: accel-binary-${{ matrix.distro }}-${{ matrix.arch }}
292+
# path: accelerate/dist/*.whl
293293

294294
wheels_musllinux_x86:
295295
name: Wheels on ${{ matrix.distro }} ${{ matrix.arch }}
@@ -383,53 +383,53 @@ jobs:
383383
name: accel-binary-${{ matrix.distro }}-${{ matrix.arch }}
384384
path: accelerate/dist/*.whl
385385

386-
wheels_musllinux_arm_ex:
387-
name: Wheels on ${{ matrix.distro }} ${{ matrix.arch }}
388-
runs-on: ubuntu-latest
389-
strategy:
390-
matrix:
391-
distro: [musllinux_1_2]
392-
arch: [s390x, ppc64le]
393-
env:
394-
CIBW_MUSLLINUX_S390X_IMAGE: ${{ matrix.distro }}
395-
CIBW_MUSLLINUX_PPC64LE_IMAGE: ${{ matrix.distro }}
396-
CIBW_BUILD: cp31*-musllinux*
397-
CIBW_ARCHS: ${{matrix.arch}}
398-
399-
steps:
400-
- name: Check out repository
401-
uses: actions/checkout@v4
402-
- name: Install Python
403-
uses: actions/setup-python@v5
404-
with:
405-
python-version: 3.x
386+
# wheels_musllinux_arm_ex:
387+
# name: Wheels on ${{ matrix.distro }} ${{ matrix.arch }}
388+
# runs-on: ubuntu-latest
389+
# strategy:
390+
# matrix:
391+
# distro: [musllinux_1_2]
392+
# arch: [s390x, ppc64le]
393+
# env:
394+
# CIBW_MUSLLINUX_S390X_IMAGE: ${{ matrix.distro }}
395+
# CIBW_MUSLLINUX_PPC64LE_IMAGE: ${{ matrix.distro }}
396+
# CIBW_BUILD: cp3*-musllinux*
397+
# CIBW_ARCHS: ${{matrix.arch}}
398+
399+
# steps:
400+
# - name: Check out repository
401+
# uses: actions/checkout@v4
402+
# - name: Install Python
403+
# uses: actions/setup-python@v5
404+
# with:
405+
# python-version: 3.x
406406

407-
- name: Set up QEMU
408-
uses: docker/setup-qemu-action@v3
409-
410-
- name: Build wheels (develop)
411-
uses: pypa/cibuildwheel@v2.22.0
412-
# if: ${{ github.ref == 'refs/heads/develop' }}
413-
with:
414-
package-dir: "./accelerate"
415-
output-dir: "./accelerate/dist"
416-
env:
417-
BUILD_EXTENSION: yes
418-
419-
- name: Build wheels (master)
420-
uses: pypa/cibuildwheel@v2.22.0
421-
if: ${{ github.ref == 'refs/heads/master' }}
422-
with:
423-
package-dir: "./accelerate"
424-
output-dir: "./accelerate/dist"
425-
env:
426-
BUILD_EXTENSION: yes
427-
428-
- name: Save wheels
429-
uses: actions/upload-artifact@v4
430-
with:
431-
name: accel-binary-${{ matrix.distro }}-${{ matrix.arch }}
432-
path: accelerate/dist/*.whl
407+
# - name: Set up QEMU
408+
# uses: docker/setup-qemu-action@v3
409+
410+
# - name: Build wheels (develop)
411+
# uses: pypa/cibuildwheel@v2.22.0
412+
# # if: ${{ github.ref == 'refs/heads/develop' }}
413+
# with:
414+
# package-dir: "./accelerate"
415+
# output-dir: "./accelerate/dist"
416+
# env:
417+
# BUILD_EXTENSION: yes
418+
419+
# - name: Build wheels (master)
420+
# uses: pypa/cibuildwheel@v2.22.0
421+
# if: ${{ github.ref == 'refs/heads/master' }}
422+
# with:
423+
# package-dir: "./accelerate"
424+
# output-dir: "./accelerate/dist"
425+
# env:
426+
# BUILD_EXTENSION: yes
427+
428+
# - name: Save wheels
429+
# uses: actions/upload-artifact@v4
430+
# with:
431+
# name: accel-binary-${{ matrix.distro }}-${{ matrix.arch }}
432+
# path: accelerate/dist/*.whl
433433

434434
pypi-publish-accel:
435435
name: Upload Accelerate ${{matrix.repo}}
@@ -440,10 +440,10 @@ jobs:
440440
- wheels_mac
441441
- wheels_manylinux_x86
442442
- wheels_manylinux_arm
443-
- wheels_manylinux_arm_ex
443+
# - wheels_manylinux_arm_ex
444444
- wheels_musllinux_x86
445445
- wheels_musllinux_arm
446-
- wheels_musllinux_arm_ex
446+
# - wheels_musllinux_arm_ex
447447
- tarballs
448448
# TODO: should be choosing the repo URL based on master/develop
449449
permissions:
@@ -482,10 +482,10 @@ jobs:
482482
- wheels_mac
483483
- wheels_manylinux_x86
484484
- wheels_manylinux_arm
485-
- wheels_manylinux_arm_ex
485+
# - wheels_manylinux_arm_ex
486486
- wheels_musllinux_x86
487487
- wheels_musllinux_arm
488-
- wheels_musllinux_arm_ex
488+
# - wheels_musllinux_arm_ex
489489
- tarballs
490490
# TODO: should be choosing the repo URL based on master/develop
491491
permissions:

0 commit comments

Comments
 (0)