-
Notifications
You must be signed in to change notification settings - Fork 2
81 lines (78 loc) · 2.25 KB
/
docs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
name: Check docs build cleanly
on:
# Run on pushes to main
push:
branches:
- main
# And all pull requests
pull_request:
concurrency:
# Cancels jobs running if new commits are pushed
group: >
${{ github.workflow }}-
${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build_docs:
name: Run doc build
# The type of runner that the job will run on
runs-on: ubuntu-latest
# The docker container to use.
container:
image: firedrakeproject/firedrake-docdeps:latest
options: --user root
volumes:
- ${{ github.workspace }}:/home/firedrake/output
# Steps represent a sequence of tasks that will be executed as
# part of the jobs
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.10'
- uses: actions/checkout@v3
- name: Install chekpoint_schedules and docs dependencies
run: |
python -m pip install sphinx nbsphinx nbsphinx_link sphinx-rtd-theme ipython
python -m pip install -e .
# - name: Check bibtex
# run: |
# cd docs
# make validate-bibtex
- name: Check documentation links
if: ${{ github.ref == 'refs/heads/main' }}
run: |
cd docs
make linkcheck
- name: Build docs
run: |
cd docs
make html
make latex
make latexpdf
- name: Copy manual to HTML tree
run: |
cd docs
cp build/latex/checkpoint_schedules.pdf build/html/_static/manual.pdf
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
name: github-pages
path: /__w/checkpoint_schedules/checkpoint_schedules/docs/build/html
retention-days: 1
deploy:
name: Deploy Github pages
needs: build_docs
if: ${{ github.ref == 'refs/heads/main' }}
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: http://firedrakeproject.github.io/checkpoint_schedules
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2