summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorirungentoo <irungentoo@gmail.com>2013-08-01 14:44:41 -0700
committerirungentoo <irungentoo@gmail.com>2013-08-01 14:44:41 -0700
commitc6799c5fbec9a276bc6dafd837d7b0e808699c9a (patch)
tree7206e2bfe7c9db9b8e40f6e173f3fc7a793c3858 /.travis.yml
parent1e016375166a23e259abd34a0c30cdbf5c3d119b (diff)
parente95ecfc467997f831a664342acda5f911e43379f (diff)
Merge pull request #220 from fhahn/sphinx-docs
Documentation using sphinx
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 8e71c327..a1a17f61 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -21,12 +21,15 @@ before_script:
21 - cd .. 21 - cd ..
22# creating librarys' links and updating cache 22# creating librarys' links and updating cache
23 - sudo ldconfig 23 - sudo ldconfig
24 24# installing sphinx, needed for documentation
25 - sudo apt-get install python-sphinx
25 26
26script: 27script:
27 - mkdir build && cd build 28 - mkdir build && cd build
28 - cmake .. 29 - cmake ..
29 - make -j3 30 - make -j3
31# build docs separately
32 - make docs
30 33
31notifications: 34notifications:
32 email: false 35 email: false