diff options
author | Joseph Herlant <aerostitch@users.noreply.github.com> | 2018-04-20 10:02:39 -0700 |
---|---|---|
committer | Pierre GRANDIN <pgrandin@users.noreply.github.com> | 2018-04-20 10:02:39 -0700 |
commit | d5337e8ce5ac36a64bf2580465f7d3eca7ec0352 (patch) | |
tree | 884dc0334920bb02d7f6fe45d2bfeefa27513764 | |
parent | 2c8a062c94e84200cabaf5483248f90a70703d85 (diff) | |
download | navit-i18n/ar.tar.gz |
Change:CI:Move doxygen to the build workflow to only run it when the build succeeds (#451)v0.5.1i18n/ar
-rw-r--r-- | .circleci/config.yml | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 76982f54b..a7373bbf7 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -172,12 +172,6 @@ jobs: command: export GIT_TERMINAL_PROMPT=0 && git push origin $CIRCLE_SHA1:refs/heads/master workflows: version: 2 - doxygen: - jobs: - - run_doxygen: - filters: - branches: - only: /^trunk$/ build_all: jobs: - build_linux @@ -187,6 +181,18 @@ workflows: - build_wince - build_tomtom_minimal - build_tomtom_plugin + - run_doxygen: + requires: + - build_linux + - build_android_arm + - build_android_x86 + - build_win32 + - build_wince + - build_tomtom_minimal + - build_tomtom_plugin + filters: + branches: + only: /^trunk$/ - merge_trunk_in_master: requires: - build_linux |