Skip to content

Commit

Permalink
Merge pull request #221 from PJK/docs-ci
Browse files Browse the repository at this point in the history
Build docs on CI
  • Loading branch information
PJK committed Mar 19, 2022
2 parents aba1d13 + 1501f41 commit 5a13194
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2.1

linux-setup: &linux-setup >
sudo apt-get update &&
sudo apt-get install -y gcc clang g++ cmake clang-format-8 cppcheck valgrind &&
sudo apt-get install -y gcc clang g++ cmake clang-format-8 cppcheck valgrind doxygen &&
sudo apt install libcmocka-dev

build-test: &build-test >
Expand All @@ -25,6 +25,10 @@ jobs:
- run: *linux-setup
- run: cppcheck . --error-exitcode=1
- run: bash clang-format.sh --verbose && git diff-index --quiet HEAD
- run: >
cd doc &&
pip3 install -r source/requirements.txt &&
make html
build-and-test:
machine:
Expand Down

0 comments on commit 5a13194

Please sign in to comment.