Bump zizmorcore/zizmor-action from 9d985c6a33094e632ee3e60d1924caa8588dc5db to c0e2b1c877e25a91d1d747c438d49199cad29698 in the actions group #128
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: Python Dist | |
| on: | |
| push: | |
| tags: | |
| - "[0-9]+.[0-9]+.[0-9]+" | |
| - "[0-9]+.[0-9]+.[0-9]+.post[0-9]+" | |
| - "[0-9]+.[0-9]+.[0-9]+[a-b][0-9]+" | |
| - "[0-9]+.[0-9]+.[0-9]+rc[0-9]+" | |
| workflow_dispatch: | |
| pull_request: | |
| workflow_call: | |
| inputs: | |
| ref: | |
| required: true | |
| type: string | |
| concurrency: | |
| group: dist-${{ github.ref }} | |
| cancel-in-progress: true | |
| defaults: | |
| run: | |
| working-directory: ./bindings/python | |
| shell: bash -eux {0} | |
| jobs: | |
| build_wheels: | |
| name: Build wheel for ${{ matrix.python }}-${{ matrix.buildplat[1] }} | |
| runs-on: ${{ matrix.buildplat[0] }} | |
| strategy: | |
| # Ensure that a wheel builder finishes even if another fails | |
| fail-fast: false | |
| matrix: | |
| # Github Actions doesn't support pairing matrix values together, let's improvise | |
| # https://github.com/github/feedback/discussions/7835#discussioncomment-1769026 | |
| buildplat: | |
| - [ubuntu-24.04, manylinux_x86_64] | |
| - [ubuntu-24.04, manylinux_aarch64] | |
| - [macos-14, macosx_*] | |
| - [windows-2022, win_amd64] | |
| python: ["cp39", "cp310", "cp311", "cp312", "cp313", "cp313t"] | |
| exclude: | |
| - buildplat: [macos-14, macosx_*] | |
| python: "cp39" | |
| - buildplat: [windows-2022, win_amd64] | |
| python: "cp313t" | |
| include: | |
| - buildplat: [macos-latest, macosx_*] | |
| python: "cp39" | |
| steps: | |
| - name: Checkout pymongoarrow | |
| uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - name: Set up python version | |
| run: | | |
| export PYTHON_VERSION=$(sed 's/^cp3/3./' <<< ${{ matrix.python }} ) | |
| echo "PYTHON_VERSION=$PYTHON_VERSION" >> $GITHUB_ENV | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.11" | |
| allow-prereleases: true | |
| - name: Set up QEMU | |
| if: matrix.buildplat[1] == 'manylinux_aarch64' | |
| uses: docker/setup-qemu-action@c7c53464625b32c7a7e944ae62b3e17d2b600130 # v3 | |
| with: | |
| # setup-qemu-action by default uses `tonistiigi/binfmt:latest` image, | |
| # which is out of date. This causes seg faults during build. | |
| # Here we manually fix the version. | |
| image: tonistiigi/binfmt:qemu-v8.1.5 | |
| platforms: arm64 | |
| - name: Install pkg-config on MacOS | |
| if: runner.os == 'macOS' | |
| run: brew install pkg-config | |
| - name: Install CMake 3 on MacOS | |
| # libbson requires cmake 3, and cmake 4 is now the default on the GHA runners. | |
| if: ${{ startsWith(runner.os, 'macOS') }} | |
| run: | | |
| pipx install "cmake>=3.15,<4" | |
| - name: Install deps | |
| run: python -m pip install "cibuildwheel>=2.4,<3" uv rust-just | |
| - name: Build MacOS Py39 Wheels | |
| if: ${{ matrix.python == 'cp39' && matrix.buildplat[0] == 'macos-11' }} | |
| env: | |
| MACOS_TEST_SKIP: "*arm64" | |
| CIBW_BUILD: cp39-macosx_* | |
| CIBW_ENABLE: cpython-freethreading | |
| MACOSX_DEPLOYMENT_TARGET: "10.14" | |
| run: python -m cibuildwheel --output-dir wheelhouse | |
| - name: Build wheels | |
| if: ${{ matrix.buildplat[0] != 'macos-11' }} | |
| env: | |
| CIBW_BUILD: ${{ matrix.python }}-${{ matrix.buildplat[1] }} | |
| CIBW_ENABLE: cpython-freethreading | |
| MACOSX_DEPLOYMENT_TARGET: "12.0" | |
| run: python -m cibuildwheel --output-dir wheelhouse | |
| - uses: actions/upload-artifact@v5 | |
| with: | |
| name: ${{ matrix.python }}-${{ startsWith(matrix.buildplat[1], 'macosx') && 'macosx' || matrix.buildplat[1] }} | |
| path: ./bindings/python/wheelhouse/*.whl | |
| if-no-files-found: error | |
| make_sdist: | |
| name: Make SDist | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - uses: actions/setup-python@v6 | |
| with: | |
| # Build sdist on lowest supported Python | |
| python-version: '3.9' | |
| - name: Install deps | |
| run: | | |
| python -m pip install rust-just uv build | |
| - name: Build SDist | |
| working-directory: ./bindings/python | |
| run: | | |
| export LIBBSON_INSTALL_DIR=$(pwd)/libbson | |
| just build-libbson | |
| python -m build --sdist . | |
| - name: Test Sdist | |
| working-directory: ./bindings/python | |
| run: | | |
| export LIBBSON_INSTALL_DIR=$(pwd)/libbson | |
| python -m pip install dist/*.gz | |
| cd .. | |
| python -c "from pymongoarrow.lib import libbson_version" | |
| - uses: actions/upload-artifact@v5 | |
| with: | |
| name: "sdist" | |
| path: ./bindings/python/dist/*.tar.gz | |
| collect_dist: | |
| runs-on: ubuntu-latest | |
| needs: [build_wheels, make_sdist] | |
| name: Download Wheels | |
| steps: | |
| - name: Download all workflow run artifacts | |
| uses: actions/download-artifact@v6 | |
| - name: Flatten directory | |
| working-directory: . | |
| run: | | |
| find . -mindepth 2 -type f -exec mv {} . \; | |
| find . -type d -empty -delete | |
| - uses: actions/upload-artifact@v5 | |
| with: | |
| name: all-dist-${{ github.run_id }} | |
| path: "./*" |