summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Grandin <grandinp@gmail.com>2017-10-21 13:14:01 -0700
committerPierre Grandin <grandinp@gmail.com>2017-10-21 13:14:01 -0700
commit33203d0a0fab79dd6e182466f0b6ef41e07681ae (patch)
treea9f5f8c1e4c4e9711628a36f9812350753a44cca
parente9d25337220e477d5e5a410f2144c02dce0b4a3d (diff)
downloadnavit-33203d0a0fab79dd6e182466f0b6ef41e07681ae.tar.gz
Run doxygen as part of CIv2 workflow
-rw-r--r--.circleci/config.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 4f8a82d39..97051174b 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -13,6 +13,15 @@ jobs:
command: |
bash ci/setup_common_requirements.sh
bash ci/build_linux.sh
+ run_doxygen:
+ <<: *defaults
+ steps:
+ - checkout
+ - run:
+ name: Run doxygen
+ command: |
+ apt-get install doxygen
+ doxygen
build_android_arm:
<<: *defaults
steps:
@@ -105,6 +114,9 @@ workflows:
build_all:
jobs:
- build_linux
+ - run_doxygen
+ requires:
+ - build_linux
- build_android_arm
- build_android_x86
- build_win32