forked from openebs/openebs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Setup Travis CI for documentation changes
Fixes openebs#443 .travis.yaml - adds sphinx build steps that converts warnings into errors - inspiration: https://coderwall.com/p/wws2uq/have-travis-ci-test-your-sphinx-docs requirements.txt - sphinx related packages
Showing
2 changed files
with
11 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
dist: trusty | ||
sudo: required | ||
install: true | ||
language: python | ||
|
||
python: | ||
- "2.7" | ||
|
||
install: "pip install -q -r requirements.txt" | ||
|
||
script: | ||
- make build | ||
notifications: | ||
email: | ||
recipients: | ||
- kiran.mova@cloudbyte.com | ||
- cd documentation; sphinx-build -nW -b html source build | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Sphinx==1.6.3 | ||
sphinx-rtd-theme==0.2.4 |