ci: only install ldoc for BUILD_APIDOC
The example tests are being run explicitly by now, and not implicitly when building the docs.
This commit is contained in:
parent
06eeef47d8
commit
eb8b98eef3
|
@ -90,8 +90,11 @@ install:
|
||||||
- if [ "$DO_CHECKQA" = 1 ]; then travis_retry sudo luarocks install luacheck; fi
|
- if [ "$DO_CHECKQA" = 1 ]; then travis_retry sudo luarocks install luacheck; fi
|
||||||
|
|
||||||
# Install ldoc for building docs.
|
# Install ldoc for building docs.
|
||||||
- travis_retry sudo luarocks install ldoc
|
- |
|
||||||
- travis_retry sudo luarocks install lua-discount
|
if [ "$BUILD_APIDOC" = "true" ]; then
|
||||||
|
travis_retry sudo luarocks install ldoc
|
||||||
|
travis_retry sudo luarocks install lua-discount
|
||||||
|
fi
|
||||||
|
|
||||||
# Install dependencies for code coverage testing.
|
# Install dependencies for code coverage testing.
|
||||||
- if [ "$DO_COVERAGE" = "" ]; then export DO_COVERAGE=0; fi
|
- if [ "$DO_COVERAGE" = "" ]; then export DO_COVERAGE=0; fi
|
||||||
|
|
Loading…
Reference in New Issue