Skip to content

Repository for containing builds for Python packages with only source distribution

License

Notifications You must be signed in to change notification settings

ipwhl/cheese-maker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

How to add wheel

Build config

Add a script like this for the wheel:

name: <Package name and version>

defaults:
  run:
    shell: bash

on: pull_request

jobs:
  build_wheels:
    name: Build wheels on ${{ matrix.os }}
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        os: [ubuntu-20.04, windows-2019, macos-10.15]

    steps:
      - uses: actions/checkout@v2

      # Used to host cibuildwheel
      - uses: actions/setup-python@v2

      - name: Install cibuildwheel
        run: python -m pip install cibuildwheel==2.1.2

      - name: Fetch source distribution
        run: |
          curl <sdist tarball URL> -o <sdist tarball file>
          tar -zxf <sdist tarball file>
          mv <extracted tarbal dir>/* .

      - name: Build wheels
        run: python -m cibuildwheel --output-dir wheelhouse
        env:
          CIBW_PROJECT_REQUIRES_PYTHON: ">=3.7"
          CIBW_BUILD: "cp*"

      - name: Checksum
        uses: Huy-Ngo/gha-sha@v1.1.0
        with:
          glob: 'wheelhouse/*.whl'

      - name: Release
        uses: softprops/action-gh-release@v1
        with:
          name: 'Release: <package name-version>'
          files: wheelhouse/*.whl
          tag_name: <release tag>

Tag the release

Tag the release with the name of the release, with all lowercase

For example, if you build wheels for python-Levenshtein, version 0.12.0, the tag would be python-levenshtein-0.12.0.

Afterwards, push the tag and the build config.

Platform-dependent only

Note that the wheel must be platform-dependent. Platform-independent wheels can be built on sourcehut and can't be built with cibuildwheel.

About

Repository for containing builds for Python packages with only source distribution

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages