Build Python Wheels #2840
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 Python Wheels | |
| on: | |
| push: | |
| pull_request: | |
| schedule: | |
| - cron: "0 6 * * *" # Daily 6AM UTC build | |
| jobs: | |
| build-wheels: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest] | |
| fail-fast: true | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.x' | |
| - name: Install native dependencies (Ubuntu) | |
| run: sudo apt-get update && sudo apt-get install -y nettle-dev clang libtdb-dev libssl-dev pkg-config | |
| if: "matrix.os == 'ubuntu-latest'" | |
| - name: set up rust | |
| if: matrix.os != 'ubuntu' | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| profile: minimal | |
| toolchain: stable | |
| override: true | |
| - name: Install native dependencies (MacOS) | |
| run: brew install swig nettle | |
| if: "matrix.os == 'macos-latest'" | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install setuptools wheel cibuildwheel | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| if: "matrix.os == 'ubuntu-latest'" | |
| - name: Build wheels | |
| run: python -m cibuildwheel --output-dir wheelhouse | |
| - name: Upload wheels | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: artifact-wheels-${{ matrix.os }} | |
| path: ./wheelhouse/*.whl | |
| build-sdist: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install build | |
| - name: Build sdist | |
| run: python -m build --sdist | |
| - name: Upload sdist | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: artifact-source | |
| path: ./dist/*.tar.gz | |
| publish: | |
| runs-on: ubuntu-latest | |
| needs: | |
| - build-wheels | |
| - build-sdist | |
| if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') | |
| permissions: | |
| id-token: write | |
| environment: | |
| name: pypi | |
| url: https://pypi.org/p/silver-platter | |
| steps: | |
| - uses: actions/setup-python@v6 | |
| - name: Download wheels | |
| uses: actions/download-artifact@v7 | |
| with: | |
| patterns: artifact-* | |
| merge-multiple: true | |
| path: dist | |
| - name: Publish package distributions to PyPI | |
| uses: pypa/gh-action-pypi-publish@release/v1 |