Integrate with Travis CI
Project: http://git-wip-us.apache.org/repos/asf/couchdb-documentation/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb-documentation/commit/51f6459d Tree: http://git-wip-us.apache.org/repos/asf/couchdb-documentation/tree/51f6459d Diff: http://git-wip-us.apache.org/repos/asf/couchdb-documentation/diff/51f6459d Branch: refs/heads/master Commit: 51f6459d1637c6fefad21dbb21da2253daf05547 Parents: 27cc733 Author: Alexander Shorin <[email protected]> Authored: Tue Mar 17 23:01:57 2015 +0300 Committer: Alexander Shorin <[email protected]> Committed: Thu Mar 26 03:04:13 2015 +0300 ---------------------------------------------------------------------- .travis.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb-documentation/blob/51f6459d/.travis.yml ---------------------------------------------------------------------- diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..0bf355e --- /dev/null +++ b/.travis.yml @@ -0,0 +1,25 @@ +language: python +python: + - 2.6 + - 3.3 + +before_install: + - sudo apt-get update -qq + - sudo apt-get install -yqq texlive-latex-base + - sudo apt-get install -yqq texlive-latex-extra + - sudo apt-get install -yqq texlive-latex-recommended + - sudo apt-get install -yqq texlive-fonts-recommended + - sudo apt-get install -yqq texinfo + +install: + - pip install sphinx + +script: + - make ${TARGET} + +env: + matrix: + - TARGET=html + - TARGET=pdf + +cache: apt
