-
Notifications
You must be signed in to change notification settings - Fork 15
86 lines (73 loc) · 2.57 KB
/
doc.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
82
83
84
85
86
# SPDX-FileCopyrightText: 2021 Philipp Basler, Margarete Mühlleitner and Jonas Müller
#
# SPDX-License-Identifier: GPL-3.0-or-later
name: Doxygen Deploy
on:
push:
branches:
- master
pull_request:
branches:
- master
- develop
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
CreateDocumentation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: installPackages
run: sudo apt-get install --no-install-recommends --yes doxygen graphviz
- uses: actions/setup-python@v5
with:
python-version: '3.x' # Version range or exact version of a Python version to use, using SemVer's version range syntax
architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified
- name: Install conan
run: pip install conan>2
- name: Get number of CPU cores
uses: SimenB/github-actions-cpu-cores@v2
id: cpu-cores
- run: python3 Setup.py --build-missing
- run: cmake --preset conan-linux-x86_64-release
- run: cmake --build --preset conan-linux-x86_64-release -j${{ steps.cpu-cores.outputs.count }} -t doc
# sphinx
- run: pip3 install sphinx pipenv breathe myst_parser sphinx_github_changelog sphinx_rtd_dark_mode
- run: python3 docs/build_sphinx.py ./build/linux-x86_64-release/xml
- uses: actions/upload-artifact@v4
with:
path: build/linux-x86_64-release/html
name: doxygen
- uses: actions/upload-artifact@v4
with:
path: docs/_build
name: sphinx
UploadDocumentation:
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
needs: CreateDocumentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: doxygen
path: doxygen
- uses: actions/download-artifact@v4
with:
name: sphinx
path: sphinx
- name: Deploy
uses: JamesIves/[email protected]
with:
branch: gh-pages # The branch the action should deploy to.
folder: doxygen # The folder the action should deploy.
target-folder: documentation
- name: Deploy
uses: JamesIves/[email protected]
with:
branch: gh-pages # The branch the action should deploy to.
folder: sphinx # The folder the action should deploy.
target-folder: sphinx