more #2723
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
| name: Wheels | |
| on: | |
| schedule: | |
| # ┌───────────── minute (0 - 59) | |
| # │ ┌───────────── hour (0 - 23) | |
| # │ │ ┌───────────── day of the month (1 - 31) | |
| # │ │ │ ┌───────────── month (1 - 12 or JAN-DEC) | |
| # │ │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT) | |
| # │ │ │ │ │ | |
| - cron: "42 1 * * 0,3" | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| env: | |
| EXPECTED_DISTS: 91 | |
| FORCE_COLOR: 1 | |
| jobs: | |
| build-native-wheels: | |
| if: github.event_name != 'schedule' || github.repository_owner == 'python-pillow' | |
| name: ${{ matrix.name }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - name: "manylinux_2_28 x86_64" | |
| platform: linux | |
| os: ubuntu-latest | |
| cibw_arch: x86_64 | |
| build: "*cp314-manylinux*" | |
| - name: "manylinux_2_28 aarch64" | |
| platform: linux | |
| os: ubuntu-24.04-arm | |
| cibw_arch: aarch64 | |
| build: "*cp314-manylinux*" | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| persist-credentials: false | |
| submodules: true | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.x" | |
| - name: Install cibuildwheel | |
| run: | | |
| python3 -m pip install -r .ci/requirements-cibw.txt | |
| - name: Build wheels | |
| run: | | |
| python3 -m cibuildwheel --output-dir wheelhouse | |
| env: | |
| CIBW_PLATFORM: ${{ matrix.platform }} | |
| CIBW_ARCHS: ${{ matrix.cibw_arch }} | |
| CIBW_BUILD: ${{ matrix.build }} | |
| CIBW_ENABLE: cpython-prerelease cpython-freethreading pypy | |
| CIBW_MANYLINUX_AARCH64_IMAGE: ${{ matrix.manylinux }} | |
| CIBW_MANYLINUX_PYPY_AARCH64_IMAGE: ${{ matrix.manylinux }} | |
| CIBW_MANYLINUX_PYPY_X86_64_IMAGE: ${{ matrix.manylinux }} | |
| CIBW_MANYLINUX_X86_64_IMAGE: ${{ matrix.manylinux }} | |
| MACOSX_DEPLOYMENT_TARGET: ${{ matrix.macosx_deployment_target }} | |
| - uses: actions/upload-artifact@v5 | |
| with: | |
| name: dist-${{ matrix.name }} | |
| path: ./wheelhouse/*.whl |