| # Licensed to the Apache Software Foundation (ASF) under one |
| # or more contributor license agreements. See the NOTICE file |
| # distributed with this work for additional information |
| # regarding copyright ownership. The ASF licenses this file |
| # to you under the Apache License, Version 2.0 (the |
| # "License"); you may not use this file except in compliance |
| # with the License. You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, |
| # software distributed under the License is distributed on an |
| # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| # KIND, either express or implied. See the License for the |
| # specific language governing permissions and limitations |
| # under the License. |
| |
| # ------------------------------------------------------------- |
| # |
| # CI Check Python SDK Workflow |
| # |
| # This workflow is integrated from the maturin-generated python.yml |
| # and adapted to work within the monorepo structure. |
| # |
| name: ci-check-python-sdk |
| |
| on: |
| workflow_dispatch: |
| workflow_call: |
| push: |
| tags: |
| - 'python-v*' |
| |
| permissions: |
| contents: read |
| |
| jobs: |
| linux: |
| runs-on: ubuntu-latest |
| strategy: |
| matrix: |
| target: [x86_64, aarch64] |
| steps: |
| - uses: actions/checkout@v4 |
| - uses: actions/setup-python@v5 |
| with: |
| python-version: '3.10' |
| - name: Cache Rust dependencies |
| uses: Swatinem/rust-cache@v2 |
| with: |
| workspaces: | |
| . -> target |
| foreign/python -> target |
| cache-on-failure: true |
| key: python-${{ matrix.target }} |
| - name: Build wheels |
| uses: PyO3/maturin-action@v1 |
| with: |
| target: ${{ matrix.target }} |
| working-directory: foreign/python |
| before-script-linux: 'dnf install -y perl-IPC-Cmd && (python3 -m pip --version || python3 -m ensurepip)' |
| manylinux: '2_28' |
| args: --release --out dist --find-interpreter |
| sccache: 'true' |
| - name: Set up Docker Buildx |
| if: matrix.target == 'x86_64' |
| uses: docker/setup-buildx-action@v3 |
| - name: Run tests |
| if: matrix.target == 'x86_64' |
| working-directory: foreign/python |
| run: | |
| # Run tests using Docker Compose with caching |
| DOCKER_BUILDKIT=1 docker compose -f docker-compose.test.yml up --build --abort-on-container-exit --exit-code-from python-tests |
| |
| # Clean up |
| docker compose -f docker-compose.test.yml down -v |
| - name: Upload wheels |
| uses: actions/upload-artifact@v4 |
| with: |
| name: wheels-linux-${{ matrix.target }} |
| path: foreign/python/dist |
| |
| windows: |
| runs-on: windows-latest |
| strategy: |
| matrix: |
| target: [x64] |
| steps: |
| - uses: actions/checkout@v4 |
| - uses: actions/setup-python@v5 |
| with: |
| python-version: '3.10' |
| architecture: ${{ matrix.target }} |
| - name: Set up NASM |
| uses: ilammy/setup-nasm@v1 |
| - name: Build wheels |
| uses: PyO3/maturin-action@v1 |
| with: |
| target: ${{ matrix.target }} |
| working-directory: foreign/python |
| args: --release --out dist --find-interpreter |
| sccache: 'true' |
| - name: Upload wheels |
| uses: actions/upload-artifact@v4 |
| with: |
| name: wheels-windows-${{ matrix.target }} |
| path: foreign/python/dist |
| |
| macos: |
| runs-on: macos-latest |
| strategy: |
| matrix: |
| target: [x86_64, aarch64] |
| steps: |
| - uses: actions/checkout@v4 |
| - uses: actions/setup-python@v5 |
| with: |
| python-version: '3.10' |
| - name: Build wheels |
| uses: PyO3/maturin-action@v1 |
| with: |
| target: ${{ matrix.target }} |
| working-directory: foreign/python |
| args: --release --out dist --find-interpreter |
| sccache: 'true' |
| - name: Upload wheels |
| uses: actions/upload-artifact@v4 |
| with: |
| name: wheels-macos-${{ matrix.target }} |
| path: foreign/python/dist |
| |
| sdist: |
| runs-on: ubuntu-latest |
| steps: |
| - uses: actions/checkout@v4 |
| - name: Build sdist |
| uses: PyO3/maturin-action@v1 |
| with: |
| command: sdist |
| working-directory: foreign/python |
| args: --out dist |
| - name: Upload sdist |
| uses: actions/upload-artifact@v4 |
| with: |
| name: wheels-sdist |
| path: foreign/python/dist |
| |
| release: |
| name: Release |
| runs-on: ubuntu-latest |
| if: startsWith(github.ref, 'refs/tags/python-v') |
| needs: [linux, windows, macos, sdist] |
| steps: |
| - uses: actions/download-artifact@v4 |
| with: |
| pattern: wheels-* |
| merge-multiple: true |
| path: dist |
| - name: Publish to PyPI |
| uses: PyO3/maturin-action@v1 |
| env: |
| MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }} |
| with: |
| command: upload |
| args: --non-interactive --skip-existing * |