Skip to content
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

Docs #128

Merged
merged 10 commits into from
Jun 11, 2019
Merged

Docs #128

Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Build docs in a python virtualenv
  • Loading branch information
azubieta committed Jun 4, 2019

Unverified

This user has not yet uploaded their public signing key.
commit 7de56cf0f9b6b7ceb953296c9c28038558a3aa32
5 changes: 2 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -39,10 +39,9 @@ matrix:
packages:
- doxygen
- python3-pip
install:
- sudo pip3 install -r docs/requirements.txt
dist: xenial
script:
- cd docs && make html
- cd docs && ../travis/build-docs.sh
deploy:
provider: pages
skip_cleanup: true
8 changes: 8 additions & 0 deletions travis/build-docs.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/usr/bin/env bash

set -ex

virtualenv -p python3 docbuildenv
. ./docbuildenv/bin/activate
pip install -r requirements.txt
make html