-
Notifications
You must be signed in to change notification settings - Fork 1
33 lines (31 loc) · 982 Bytes
/
doxygen.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
name: Update Doxygen
on:
push:
branches:
- master
paths-ignore:
- '.github/workflows/boosttest.yml'
- 'doc/*'
- 'examples/*'
jobs:
doxygen:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
steps:
- uses: actions/checkout@v3
- name: install_dependencies
run: sudo apt-get update -y && sudo apt-get install build-essential libeigen3-dev libboost-all-dev cmake doxygen graphviz perl texlive-base texlive-fonts-recommended texlive-fonts-extra texlive-latex-extra -y
- name: build_doxygen
run: |
mkdir -p /tmp/build && cd /tmp/build
cmake $OLDPWD && make doc
make -C /tmp/build/doc/latex/
mv /tmp/build/doc/latex/refman.pdf /tmp/build/doc/html/
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: gh-pages
publish_dir: /tmp/build/doc/html
destination_dir: doxygen