Bump pypa/cibuildwheel from 3.3.1 to 3.4.0 #237
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: build | |
| on: [push] | |
| jobs: | |
| build_wheels: | |
| name: Build ${{ matrix.archs }} ${{ matrix.build }} wheels on ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-22.04] | |
| archs: ["x86_64, i686", "aarch64", "ppc64le", "s390x", "riscv64", "armv7l"] | |
| build: ["manylinux", "musllinux"] | |
| platform: ["auto"] | |
| include: | |
| - os: windows-2022 | |
| archs: "AMD64" | |
| - os: windows-2022 | |
| archs: "x86" | |
| - os: windows-2022 | |
| archs: "ARM64" | |
| - os: macos-15-intel | |
| archs: "x86_64" | |
| - os: macos-14 | |
| archs: "arm64" | |
| - os: ubuntu-24.04 | |
| archs: "arm64_v8a, x86_64" | |
| platform: "android" | |
| - os: macos-14 | |
| archs: "arm64_iphoneos,arm64_iphonesimulator" | |
| platform: "ios" | |
| - os: macos-15-intel | |
| archs: "x86_64_iphonesimulator" | |
| platform: "ios" | |
| steps: | |
| - name: Disable git autocrlf | |
| run: | | |
| git config --global core.autocrlf false | |
| git config --global core.eol lf | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| submodules: recursive | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| if: runner.os == 'Linux' | |
| - name: Enable PyPy and free-threading | |
| shell: bash | |
| run: | | |
| echo "CIBW_ENABLE=pypy cpython-freethreading" >> "$GITHUB_ENV" | |
| - name: Enable CPython pre-release wheels | |
| shell: bash | |
| if: ${{ !startsWith(github.ref, 'refs/tags/v') }} | |
| run: | | |
| echo "CIBW_ENABLE=$CIBW_ENABLE cpython-prerelease" >> "$GITHUB_ENV" | |
| - name: Build wheels | |
| uses: pypa/cibuildwheel@v3.4.0 | |
| env: | |
| CIBW_ARCHS: "${{ matrix.archs }}" | |
| CIBW_BUILD: "${{ matrix.build && '*-' || ''}}${{ matrix.build }}*" | |
| CIBW_PLATFORM: "${{ matrix.platform }}" | |
| - uses: actions/upload-artifact@v6 | |
| with: | |
| name: wheels-${{ matrix.os }}-${{ matrix.build }}-${{ matrix.archs }} | |
| path: ./wheelhouse/*.whl | |
| build_sdist: | |
| name: Build sdist | |
| runs-on: ubuntu-22.04 | |
| strategy: | |
| matrix: | |
| python-version: ['3.10'] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| submodules: recursive | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: python -m pip install -U pip 'setuptools>=45' | |
| - name: Build sdist | |
| run: python setup.py build sdist | |
| - uses: actions/upload-artifact@v6 | |
| with: | |
| name: wheels-dist | |
| path: dist/*.tar.gz | |
| upload_test_pypi: | |
| name: Upload to Test PyPI | |
| needs: [build_wheels, build_sdist] | |
| runs-on: ubuntu-22.04 | |
| if: github.event_name == 'push' && github.repository == 'ifduyue/python-xxhash' && !startsWith(github.ref, 'refs/tags/v') | |
| permissions: | |
| id-token: write | |
| environment: | |
| name: test-pypi | |
| url: https://test.pypi.org/project/xxhash/ | |
| steps: | |
| - uses: actions/download-artifact@v7 | |
| with: | |
| pattern: wheels-* | |
| path: dist | |
| merge-multiple: true | |
| - name: Upload to Test PyPI | |
| uses: pypa/gh-action-pypi-publish@v1.13.0 | |
| with: | |
| skip-existing: true | |
| repository-url: https://test.pypi.org/legacy/ | |
| upload_pypi: | |
| name: Upload to PyPI | |
| needs: [build_wheels, build_sdist] | |
| runs-on: ubuntu-22.04 | |
| if: github.event_name == 'push' && github.repository == 'ifduyue/python-xxhash' && startsWith(github.ref, 'refs/tags/v') | |
| environment: | |
| name: pypi | |
| url: https://pypi.org/project/xxhash/ | |
| permissions: | |
| id-token: write | |
| steps: | |
| - uses: actions/download-artifact@v7 | |
| with: | |
| pattern: wheels-* | |
| path: dist | |
| merge-multiple: true | |
| - name: Upload to PyPI | |
| if: startsWith(github.ref, 'refs/tags/v') | |
| uses: pypa/gh-action-pypi-publish@v1.13.0 | |
| with: | |
| skip-existing: true |