Skip to content

Commit 4e8c968

Browse files
authored
Move Doxygen to Github actions (AliceO2Group#4969)
1 parent 83c1a60 commit 4e8c968

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

.github/workflows/doxygen.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Build Documentation
2+
3+
on:
4+
workflow_dispatch:
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Install doxygen
10+
run: sudo apt-get install doxygen doxygen-doc doxygen-latex doxygen-gui graphviz cmake
11+
- name: Install doxygen
12+
run: |
13+
cat > CMakeLists.txt <<\EOF
14+
add_subdirectory(doc)
15+
EOF
16+
cmake .
17+
make doc

0 commit comments

Comments
 (0)