python-distributions.yml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. name: Build Python distributions
  2. on:
  3. push:
  4. schedule:
  5. - cron: "0 6 * * *" # Daily 6AM UTC build
  6. jobs:
  7. build-wheels:
  8. runs-on: ${{ matrix.os }}
  9. strategy:
  10. matrix:
  11. os: [ubuntu-latest, macos-latest, windows-latest]
  12. fail-fast: true
  13. steps:
  14. - uses: actions/checkout@v4
  15. - uses: actions/setup-python@v5
  16. - name: Install native dependencies (Ubuntu)
  17. run: sudo apt-get update && sudo apt-get install -y libgpgme-dev libgpg-error-dev
  18. if: "matrix.os == 'ubuntu-latest'"
  19. - name: Install native dependencies (MacOS)
  20. run: brew install swig gpgme
  21. if: "matrix.os == 'macos-latest'"
  22. - name: Install dependencies
  23. run: |
  24. python -m pip install --upgrade pip
  25. pip install setuptools wheel fastimport paramiko urllib3 cibuildwheel setuptools-rust
  26. - name: Install gpg on supported platforms
  27. run: pip install -U gpg
  28. if: "matrix.os != 'windows-latest'"
  29. - name: Run test suite
  30. run: python -m unittest tests.test_suite
  31. - name: Set up QEMU
  32. uses: docker/setup-qemu-action@v3
  33. if: "matrix.os == 'ubuntu-latest'"
  34. - name: Build wheels
  35. run: python -m cibuildwheel --output-dir wheelhouse
  36. - name: Upload wheels
  37. uses: actions/upload-artifact@v3
  38. with:
  39. path: ./wheelhouse/*.whl
  40. build-sdist:
  41. runs-on: ubuntu-latest
  42. steps:
  43. - uses: actions/checkout@v4
  44. - uses: actions/setup-python@v5
  45. - name: Install dependencies
  46. run: |
  47. python -m pip install --upgrade pip
  48. pip install build
  49. - name: Build sdist
  50. run: python -m build --sdist
  51. - name: Upload sdist
  52. uses: actions/upload-artifact@v3
  53. with:
  54. path: ./dist/*.tar.gz
  55. publish:
  56. runs-on: ubuntu-latest
  57. needs:
  58. - build-wheels
  59. - build-sdist
  60. if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/dulwich-')
  61. steps:
  62. - name: Install twine
  63. run: |
  64. python -m pip install --upgrade pip
  65. pip install twine
  66. - name: Download distributions
  67. uses: actions/download-artifact@v2
  68. with:
  69. name: artifact
  70. path: dist
  71. - name: Publish distributions
  72. env:
  73. TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
  74. TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
  75. run: twine upload dist/*