Support for cibuildwheel #27
This file contains 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-docs | |
# Only run this when the master branch changes | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
# This job installs dependencies, build the book, and pushes it to `gh-pages` | |
jobs: | |
deploy-book: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
# Install dependencies | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: | | |
python3 -m pip install cibuildwheel | |
export SETUPTOOLS_SCM_PRETEND_VERSION='3.0.1' | |
export CIBW_ENVIRONMENT_PASS_LINUX='SETUPTOOLS_SCM_PRETEND_VERSION' | |
export CIBW_TEST_COMMAND='true' | |
CIBW_BUILD='cp39-manylinux_x86_64' python3 -m cibuildwheel --platform linux | |
# install with optional dependencies | |
find wheelhouse/ -name "*.whl" -exec python3 -m pip install '{}[docs]' \; | |
# Build the site | |
- name: Build the site | |
run: | | |
bash scripts/generate_docs.sh | |
# If we've pushed to master, push the book's HTML to github-pages | |
- if: ${{ github.ref == 'refs/heads/master' }} | |
name: GitHub Pages action | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./docs |