2020-03-31 14:04:35 +08:00
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
#
|
2023-05-16 12:04:16 +08:00
|
|
|
---
|
2020-08-15 04:01:22 +08:00
|
|
|
name: "Build Documentation"
|
2020-03-31 14:04:35 +08:00
|
|
|
on:
|
|
|
|
pull_request:
|
2020-08-15 04:01:22 +08:00
|
|
|
push:
|
2020-03-31 14:04:35 +08:00
|
|
|
|
2021-12-17 21:48:15 +08:00
|
|
|
concurrency:
|
|
|
|
group: docs-${{ github.event.pull_request.number || github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2022-06-17 08:32:28 +08:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2020-03-31 14:04:35 +08:00
|
|
|
jobs:
|
2020-10-20 16:40:45 +08:00
|
|
|
build-html:
|
2020-08-15 04:01:22 +08:00
|
|
|
runs-on: ubuntu-latest
|
2020-03-31 14:04:35 +08:00
|
|
|
steps:
|
2023-09-11 10:40:23 +08:00
|
|
|
- uses: actions/checkout@v4
|
2022-06-20 10:32:56 +08:00
|
|
|
- uses: actions/setup-python@v4
|
2020-12-15 09:01:37 +08:00
|
|
|
with:
|
|
|
|
python-version: '3.8'
|
2023-05-16 12:04:16 +08:00
|
|
|
- name: Install LaTeX packages
|
|
|
|
run: |
|
|
|
|
sudo apt-get update -y
|
|
|
|
sudo apt-get install -y \
|
|
|
|
texlive-latex-recommended texlive-fonts-recommended \
|
|
|
|
texlive-latex-base texlive-latex-extra latexmk texlive-luatex \
|
|
|
|
fonts-freefont-otf xindy
|
2020-12-30 03:53:05 +08:00
|
|
|
- name: Generate Documentation
|
2020-12-15 09:01:37 +08:00
|
|
|
run: |
|
|
|
|
cd Documentation/
|
2022-01-06 05:43:01 +08:00
|
|
|
pip3 install pipenv
|
2020-12-30 03:53:05 +08:00
|
|
|
pipenv install
|
2023-05-16 12:04:16 +08:00
|
|
|
pipenv run make html latexpdf
|
2022-06-19 11:43:38 +08:00
|
|
|
- uses: actions/upload-artifact@v3
|
2020-12-15 09:01:37 +08:00
|
|
|
with:
|
|
|
|
name: sphinx-docs
|
2023-05-16 12:04:16 +08:00
|
|
|
path: |
|
|
|
|
Documentation/_build/html/
|
|
|
|
Documentation/_build/latex/*.pdf
|