Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # SPDX-License-Identifier: BSD-3-Clause | |
| # Copyright (c) Contributors to the OpenEXR Project. | |
| name: Publish python distribution 📦 to PyPI | |
| on: | |
| # Publish wheels to pypi on release | |
| release: | |
| types: [published] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| name: Python Wheels - ${{ matrix.os }}-${{ matrix.arch }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| include: | |
| - os: ubuntu-latest | |
| arch: x64 | |
| - os: ubuntu-24.04-arm | |
| arch: arm64 | |
| - os: macos-13 | |
| arch: x64 | |
| - os: macos-latest | |
| arch: arm64 | |
| - os: windows-latest | |
| arch: x64 | |
| environment: | |
| name: pypi | |
| url: https://pypi.org/p/openexr | |
| permissions: | |
| id-token: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
| - name: Install Python | |
| uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0 | |
| with: | |
| python-version: '3.x' | |
| - name: Create sdist | |
| # Only create it once. | |
| if: ${{ matrix.os == 'ubuntu-latest' }} | |
| run: pipx run build --sdist . --outdir wheelhouse | |
| - name: Build wheel | |
| uses: pypa/[email protected] | |
| with: | |
| output-dir: wheelhouse | |
| env: | |
| MACOSX_DEPLOYMENT_TARGET: 10.15 | |
| CIBW_ARCHS_MACOS: x86_64 arm64 universal2 | |
| # Build Python 3.7 through 3.12. | |
| # Skip python 3.6 since scikit-build-core requires 3.7+ | |
| # Skip 32-bit wheels builds on Windows | |
| # Also skip the PyPy builds, since they fail the unit tests | |
| CIBW_BUILD: "cp38-* cp39-* cp310-* cp311-* cp312-* cp313-*" | |
| CIBW_SKIP: "*-win32 *_i686" | |
| CIBW_TEST_SKIP: "*arm64" | |
| - name: Upload artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: wheels-${{ matrix.os }}-${{ matrix.arch }} | |
| path: | | |
| ./wheelhouse/*.whl | |
| ./wheelhouse/*.tar.gz | |
| publish-to-pypi: | |
| name: Publish Python 🐍 distribution 📦 to PyPI | |
| needs: | |
| - build | |
| runs-on: ubuntu-latest | |
| environment: | |
| name: pypi | |
| url: https://pypi.org/p/openexr | |
| permissions: | |
| id-token: write | |
| steps: | |
| - name: Download ubuntu-latest-x64 artifacts | |
| uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8 | |
| with: | |
| name: wheels-ubuntu-latest-x64 | |
| path: dist | |
| - name: Download ubuntu-24.04-arm-arm64 artifacts | |
| uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8 | |
| with: | |
| name: wheels-ubuntu-24.04-arm-arm64 | |
| path: dist | |
| - name: Download macos-13-x64 artifacts | |
| uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8 | |
| with: | |
| name: wheels-macos-13-x64 | |
| path: dist | |
| - name: Download macos-latest-arm64 | |
| uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8 | |
| with: | |
| name: wheels-macos-latest-arm64 | |
| path: dist | |
| - name: Download windows-latest-x64 artifacts | |
| uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8 | |
| with: | |
| name: wheels-windows-latest-x64 | |
| path: dist | |
| - name: Publish distribution 📦 to PyPI | |
| uses: pypa/gh-action-pypi-publish@67339c736fd9354cd4f8cb0b744f2b82a74b5c70 # v1.12.3 |