aboutsummaryrefslogtreecommitdiffstats
path: root/src/scripts
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2017-12-12 10:29:05 -0500
committerJack Lloyd <[email protected]>2017-12-12 10:29:05 -0500
commit23e0a8b6afdac8c22e062f404920b7d96bb0edff (patch)
tree433fcf3be1798be2a3690ece62df65c9bf4bb3f8 /src/scripts
parent7aa1fb22b1060b24927f79ad69113ca67defb997 (diff)
Try running rst2man in CI
Diffstat (limited to 'src/scripts')
-rwxr-xr-xsrc/scripts/ci/setup_travis.sh2
-rwxr-xr-xsrc/scripts/ci_build.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/scripts/ci/setup_travis.sh b/src/scripts/ci/setup_travis.sh
index 3ed1caeb1..81b38eef1 100755
--- a/src/scripts/ci/setup_travis.sh
+++ b/src/scripts/ci/setup_travis.sh
@@ -73,7 +73,7 @@ if [ "$TRAVIS_OS_NAME" = "linux" ]; then
elif [ "$BUILD_MODE" = "docs" ]; then
sudo apt-get -qq update
- sudo apt-get install doxygen
+ sudo apt-get install doxygen python-docutils
# The version of Sphinx in 14.04 is too old (1.2.2) and does not support
# all C++ features used in the manual. Install python-requests to avoid
diff --git a/src/scripts/ci_build.py b/src/scripts/ci_build.py
index 8c1645d3e..fdd71171f 100755
--- a/src/scripts/ci_build.py
+++ b/src/scripts/ci_build.py
@@ -82,7 +82,7 @@ def determine_flags(target, target_os, target_cpu, target_cc, cc_bin, ccache, ro
flags += ['--module-policy=%s' % (target), '--disable-static']
if target == 'docs':
- flags += ['--with-doxygen', '--with-sphinx']
+ flags += ['--with-doxygen', '--with-sphinx', '--with-rst2man']
test_cmd = None
if target == 'coverage':