Skip to content

Commit b480661

Browse files
author
Hannes Steffenhagen
committed
Check that cmake doc target works in CI
1 parent 0cd9b66 commit b480661

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/pull-request-checks.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
# user input
6767
DEBIAN_FRONTEND: noninteractive
6868
run: |
69-
sudo apt-get install --no-install-recommends -yq cmake ninja-build gcc g++ maven flex bison libxml2-utils dpkg-dev ccache
69+
sudo apt-get install --no-install-recommends -yq cmake ninja-build gcc g++ maven flex bison libxml2-utils dpkg-dev ccache doxygen
7070
- name: Prepare ccache
7171
uses: actions/cache@v2
7272
with:
@@ -84,6 +84,10 @@ jobs:
8484
mkdir build
8585
cd build
8686
cmake .. -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=/usr/bin/gcc -DCMAKE_CXX_COMPILER=/usr/bin/g++
87+
- name: Check that doc task works
88+
run: |
89+
cd build
90+
ninja doc
8791
- name: Zero ccache stats and limit in size
8892
run: ccache -z --max-size=500M
8993
- name: Build with Ninja

0 commit comments

Comments
 (0)