Skip to content

Commit f96f7d7

Browse files
committed
ci: disable macos-x86 wheels.
Temporary workaround to unblock publishing of other wheels for 3.1 release Signed-off-by: Zach Lewis <[email protected]>
1 parent 98f43a6 commit f96f7d7

File tree

1 file changed

+52
-52
lines changed

1 file changed

+52
-52
lines changed

.github/workflows/wheel.yml

Lines changed: 52 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -227,57 +227,57 @@ jobs:
227227
# macOS Wheels
228228
# ---------------------------------------------------------------------------
229229

230-
macos:
231-
name: Build wheels on macOS
232-
runs-on: macos-13
233-
if: |
234-
github.event_name != 'schedule' ||
235-
github.repository == 'AcademySoftwareFoundation/OpenImageIO'
236-
strategy:
237-
matrix:
238-
include:
239-
# -------------------------------------------------------------------
240-
# CPython 64 bits
241-
# -------------------------------------------------------------------
242-
- build: CPython 3.9 64 bits
243-
python: cp39-macosx_x86_64
244-
arch: x86_64
245-
- build: CPython 3.10 64 bits
246-
python: cp310-macosx_x86_64
247-
arch: x86_64
248-
- build: CPython 3.11 64 bits
249-
python: cp311-macosx_x86_64
250-
arch: x86_64
251-
- build: CPython 3.12 64 bits
252-
python: cp312-macosx_x86_64
253-
arch: x86_64
254-
- build: CPython 3.13 64 bits
255-
python: cp313-macosx_x86_64
256-
arch: x86_64
257-
258-
steps:
259-
- name: Checkout repo
260-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
261-
262-
- name: Install Python
263-
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
264-
with:
265-
python-version: '3.9'
266-
267-
- name: Build wheels
268-
uses: pypa/cibuildwheel@d4a2945fcc8d13f20a1b99d461b8e844d5fc6e23 # v2.21.1
269-
env:
270-
CIBW_BUILD: ${{ matrix.python }}
271-
CIBW_ARCHS: ${{ matrix.arch }}
272-
CMAKE_GENERATOR: "Unix Makefiles"
273-
# TODO: Re-enable HEIF when we provide a build recipe that does
274-
# not include GPL-licensed dynamic libraries.
275-
USE_Libheif: 'OFF'
276-
277-
- uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
278-
with:
279-
name: cibw-wheels-${{ matrix.python }}
280-
path: ./wheelhouse/*.whl
230+
# macos:
231+
# name: Build wheels on macOS
232+
# runs-on: macos-13
233+
# if: |
234+
# github.event_name != 'schedule' ||
235+
# github.repository == 'AcademySoftwareFoundation/OpenImageIO'
236+
# strategy:
237+
# matrix:
238+
# include:
239+
# # -------------------------------------------------------------------
240+
# # CPython 64 bits
241+
# # -------------------------------------------------------------------
242+
# - build: CPython 3.9 64 bits
243+
# python: cp39-macosx_x86_64
244+
# arch: x86_64
245+
# - build: CPython 3.10 64 bits
246+
# python: cp310-macosx_x86_64
247+
# arch: x86_64
248+
# - build: CPython 3.11 64 bits
249+
# python: cp311-macosx_x86_64
250+
# arch: x86_64
251+
# - build: CPython 3.12 64 bits
252+
# python: cp312-macosx_x86_64
253+
# arch: x86_64
254+
# - build: CPython 3.13 64 bits
255+
# python: cp313-macosx_x86_64
256+
# arch: x86_64
257+
258+
# steps:
259+
# - name: Checkout repo
260+
# uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
261+
262+
# - name: Install Python
263+
# uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
264+
# with:
265+
# python-version: '3.9'
266+
267+
# - name: Build wheels
268+
# uses: pypa/cibuildwheel@d4a2945fcc8d13f20a1b99d461b8e844d5fc6e23 # v2.21.1
269+
# env:
270+
# CIBW_BUILD: ${{ matrix.python }}
271+
# CIBW_ARCHS: ${{ matrix.arch }}
272+
# CMAKE_GENERATOR: "Unix Makefiles"
273+
# # TODO: Re-enable HEIF when we provide a build recipe that does
274+
# # not include GPL-licensed dynamic libraries.
275+
# USE_Libheif: 'OFF'
276+
277+
# - uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
278+
# with:
279+
# name: cibw-wheels-${{ matrix.python }}
280+
# path: ./wheelhouse/*.whl
281281

282282
# ---------------------------------------------------------------------------
283283
# macOS ARM Wheels
@@ -389,7 +389,7 @@ jobs:
389389

390390

391391
upload_pypi:
392-
needs: [sdist, linux, linux-arm, macos, macos-arm, windows]
392+
needs: [sdist, linux, linux-arm, macos-arm, windows]
393393
runs-on: ubuntu-latest
394394
permissions:
395395
id-token: write

0 commit comments

Comments
 (0)