-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Documentation build fails on Travis CI #57
Comments
I ran into a similar issue on GitLab CI. After setting As an aside, @Holzhaus: is there a way to enable debug logging through a command-line switch? This would have helped narrow down the issue. |
@opcon not the author, but having looked at the code it doesn't appear so. If you're willing to put a PR together it would be trivial to add an |
So, the underlying issue was a missing whitelist entry? |
Hi,
I am trying to switch our documentation build from normal sphinx to
sphinx-multiversion
. Locally, I can run everything just fine, but the deployment using Travis fails. This is the output of my job on Travis:https://travis-ci.org/github/Happy-Algorithms-League/hal-cgp/jobs/743167629
I am trying to build the documentation for the
master
branch and for one release tag (0.2.0
) but it fails to find both, if I understand correctly (error message saying:I thought that I might need to fetch all tags explicitly, that's why I added a
git fetch --all --tags
to the.travis.yml
but that didn't help.This is the complete travis config file: https://github.com/Happy-Algorithms-League/hal-cgp/blob/sphinx_doc/multi_version/.travis.yml
and the actual documentation build is done in a
deploy.sh
script, which is:where my Makefile then executes (inside the
docs/
folder):sphinx-multiversion -D reset_argv=1 . _build/html
This is using the latest release (0.2.4).
The text was updated successfully, but these errors were encountered: