summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-05-04 10:55:28 (GMT)
committerGitHub <noreply@github.com>2019-05-04 10:55:28 (GMT)
commit2d9f1d8c012ae63d7cc5dd248ee24d750812ac92 (patch)
treea34322a357d2656bc249dab43d51982d571dae77 /.travis.yml
parentac76b9a7a70b3c828c76442f5977937fcb87811a (diff)
downloadDoxygen-2d9f1d8c012ae63d7cc5dd248ee24d750812ac92.zip
Doxygen-2d9f1d8c012ae63d7cc5dd248ee24d750812ac92.tar.gz
Doxygen-2d9f1d8c012ae63d7cc5dd248ee24d750812ac92.tar.bz2
Update .travis.yml
Skip building docs on osx until a solution for the missing mactek package is found
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index e20f2fb..2b7fb4f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -98,4 +98,6 @@ script:
- cmake -G "Unix Makefiles" -Dbuild_doc=ON -Dbuild_wizard=ON ..
- make
- make tests
- - make docs
+ - if [ ! "${TRAVIS_OS_NAME}" == "osx" ]; then
+ make docs;
+ fi;