1
0
Fork 0

[C] Moved doxygen to basic linux

This commit is contained in:
seleznevae 2018-11-27 20:40:33 +03:00
parent 96a28c6745
commit 33e85413d9
1 changed files with 14 additions and 1 deletions

View File

@ -7,6 +7,19 @@ matrix:
compiler: gcc
before_script:
- pip install --user cpp-coveralls
env:
- BASIC_LINUX_GCC=yes
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['cppcheck', 'doxygen', 'graphviz', 'python-sphinx']
deploy:
provider: pages
skip_cleanup: true
local_dir: $TRAVIS_BUILD_DIR/docs/html
github_token: $GITHUB_API_KEY
on:
branch: deploy-doxy
after_success:
- coveralls --build-root build --include src --include tests --gcov-options '\-lp'
@ -130,7 +143,7 @@ script:
# doxygen run
- |
if [ "${FORT_C_COMPILER}" = "gcc-8" ]; then
if [ "${BASIC_LINUX_GCC}" = "yes" ]; then
cd docs
make doxygen html
cd ..