Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add GitHub workflow for building and publishing #144

Merged
merged 4 commits into from
Mar 22, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 68 additions & 0 deletions .github/workflows/build_and_upload.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
name: Build and upload to PyPI

on:
push:
pull_request:
release:
types:
- published

jobs:
build_wheels:
name: "Build wheels on ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: "actions/checkout@v3"
with:
submodules: true
- name: "Build wheels"
uses: "pypa/cibuildwheel@v2.3.1"
env:
CIBW_SKIP: "pp*" # FIXME
CIBW_BEFORE_BUILD: "pip install -U cython && ./update_cpp.sh"
CIBW_BEFORE_BUILD_WINDOWS: "pip install -U cython && update_cpp.sh"
CIBW_TEST_REQUIRES: "pytest"
CIBW_TEST_COMMAND: "pytest {project}/tests --doctest-modules"
- uses: "actions/upload-artifact@v3"
with:
path: "./wheelhouse/*.whl"

make_sdist:
name: "Build source distribution"
runs-on: ubuntu-latest
steps:
- uses: "actions/checkout@v2"
with:
submodules: true
- name: "Install dependencies"
run: "python -m pip install --upgrade cython"
- name: "Rebuild CPP files using Cython"
run: "./update_cpp.sh"
- name: "Build source distribution"
run: "pipx run build --sdist"
- uses: "actions/upload-artifact@v3"
with:
path: "./dist/*.tar.gz"

upload_to_pypi:
name: "Upload to PyPI"
runs-on: ubuntu-latest
needs:
- build_wheels
- make_sdist
if: github.event_name == 'release' && github.event.action == 'published'
steps:
- uses: "actions/download-artifact@v3"
with:
name: artifact
path: dist
- uses: "pypa/gh-action-pypi-publish@v1.5.0"
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}
print_hash: true
verbose: true