Skip to content

Commit

Permalink
Circle CI: Store generated docs
Browse files Browse the repository at this point in the history
  • Loading branch information
chfast committed Aug 13, 2018
1 parent f225870 commit 8370b8c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,16 @@ jobs:
- run:
name: "Test documentation"
command: |
doxygen Doxyfile > doxygen.log 2> doxygen.warnings
cat Doxyfile | sed 's/HTML_OUTPUT = ./HTML_OUTPUT = ..\/docs/' | doxygen - > doxygen.log 2> doxygen.warnings
if [ -s doxygen.warnings ]; then
printf '\n\nDoxygen warnings:\n\n'
cat doxygen.warnings
exit 1
fi
cat doxygen.log
- store_artifacts:
path: ~/docs
destination: docs

upload-docs:
docker:
Expand Down

0 comments on commit 8370b8c

Please sign in to comment.