Merge pull request #2226 from Ericgig/changelog.5a2 #20
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 documentation | |
on: | |
[push, pull_request] | |
jobs: | |
build: | |
name: Build documentation | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
name: Install Python | |
with: | |
python-version: '3.8' | |
- name: Install documentation dependencies | |
run: | | |
pip install pip --upgrade | |
python -mpip install -r doc/requirements.txt | |
sudo apt-get update | |
sudo apt-get install texlive-full | |
- name: Install QuTiP from GitHub | |
run: | | |
# Build without build isolation so that we use the build | |
# dependencies already installed from doc/requirements.txt. | |
python -m pip install -e .[full] --no-build-isolation | |
# Install in editable mode so it doesn't matter if we import from | |
# inside the installation directory, otherwise we can get some errors | |
# because we're importing from the wrong location. | |
python -c 'import qutip; qutip.about()' | |
- name: Build PDF documentation | |
working-directory: doc | |
run: | | |
make latexpdf SPHINXOPTS="-W --keep-going -T" | |
# Above flags are: | |
# -W : turn warnings into errors | |
# --keep-going : do not stop after the first error | |
# -T : display a full traceback if a Python exception occurs | |
- name: Upload built PDF files | |
uses: actions/upload-artifact@v3 | |
with: | |
name: qutip_pdf_docs | |
path: doc/_build/latex/* | |
if-no-files-found: error | |
- name: Build HTML documentation | |
working-directory: doc | |
run: | | |
make html SPHINXOPTS="-W --keep-going -T" | |
# Above flags are: | |
# -W : turn warnings into errors | |
# --keep-going : do not stop after the first error | |
# -T : display a full traceback if a Python exception occurs | |
- name: Upload built HTML files | |
uses: actions/upload-artifact@v3 | |
with: | |
name: qutip_html_docs | |
path: doc/_build/html/* | |
if-no-files-found: error |