123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- name: Build Python distributions
- 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, windows-latest]
- python-prefix: [pp, cp]
- fail-fast: true
- steps:
- - uses: actions/checkout@v4
- - uses: actions/setup-python@v5
- - name: Install native dependencies (Ubuntu)
- run: sudo apt-get update && sudo apt-get install -y libgpgme-dev libgpg-error-dev
- if: "matrix.os == 'ubuntu-latest'"
- - name: Install native dependencies (MacOS)
- run: brew install swig gpgme
- if: "matrix.os == 'macos-latest'"
- - name: Install dependencies
- run: |
- python -m pip install --upgrade pip
- pip install setuptools wheel cibuildwheel setuptools-rust
- - 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
- env:
- CIBW_BUILD: "${{ matrix.python-prefix }}*"
- - name: Upload wheels
- uses: actions/upload-artifact@v4
- with:
- name: artifact-${{ matrix.os }}-${{ matrix.python-prefix }}
- path: ./wheelhouse/*.whl
- build-sdist:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v4
- - uses: actions/setup-python@v5
- - 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@v4
- with:
- name: artifact-source
- path: ./dist/*.tar.gz
- test-sdist:
- needs:
- - build-sdist
- runs-on: ubuntu-latest
- steps:
- - uses: actions/setup-python@v5
- - name: Install dependencies
- run: |
- python -m pip install --upgrade pip
- pip install twine
- - name: Download sdist
- uses: actions/download-artifact@v4
- with:
- name: artifact-source
- path: dist
- - name: Test sdist
- run: twine check dist/*
- - name: Test installation from sdist
- run: pip install dist/*.tar.gz
- publish:
- runs-on: ubuntu-latest
- needs:
- - build-wheels
- - build-sdist
- if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/dulwich-')
- permissions:
- id-token: write
- environment:
- name: pypi
- url: https://pypi.org/p/dulwich
- steps:
- - name: Download distributions
- uses: actions/download-artifact@v4
- with:
- merge-multiple: true
- pattern: artifact-*
- path: dist
- - name: Publish package distributions to PyPI
- uses: pypa/gh-action-pypi-publish@release/v1
|