Commit c45bb14 1 parent 1cdcd60 commit c45bb14 Copy full SHA for c45bb14
File tree 1 file changed +20
-2
lines changed
1 file changed +20
-2
lines changed Original file line number Diff line number Diff line change 6
6
os : ubuntu-22.04
7
7
apt_packages :
8
8
- cmake
9
+ - doxygen
9
10
tools :
10
11
python : " 3.12"
12
+ jobs :
13
+ pre_build :
14
+ # Use documentation target to generate doxygen XML output, generate
15
+ # conf.py and run Doxygen.
16
+ - |
17
+ mkdir build
18
+ cd build
19
+ cmake -DCMAKE_BUILD_TYPE=Debug -DBUILD_DOCUMENTATION=on ..
20
+ cmake --build . --target doxygen
21
+
22
+ sphinx :
23
+ configuration : build/manual.cache/conf.py
24
+
25
+ # Declare the Python requirements required # to build your documentation
26
+ # See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
27
+ python :
28
+ install :
29
+ - requirements : doc/manual/requirements.txt
30
+
11
31
# - doxygen
12
32
# - python3-sphinx
13
33
# - python3-sphinx-rtd-theme
17
37
# - python3-sphinx-notfound-page
18
38
# commands:
19
39
# #- sudo apt-get install -y cmake
20
- # # Use documentation target to generate doxygen XML output, generate
21
- # # conf.py and run Sphinx.
22
40
# - |
23
41
# mkdir build
24
42
# cd build
You can’t perform that action at this time.
0 commit comments